gpt4 book ai didi

python - 同时声明多个变量的更优雅的方式

转载 作者:IT老高 更新时间:2023-10-28 12:34:09 25 4
gpt4 key购买 nike

要同时声明多个变量,我会这样做:

a, b = True, False

但是如果我必须声明更多的变量,它就会变得越来越不优雅:

a, b, c, d, e, f, g, h, i, j = True, True, True, True, True, False, True ,True , True, True

有没有更好/优雅/方便的方法来做到这一点?

这必须是非常基本的,但如果我确实使用列表或元组来存储变量,我将如何处理以便我会有所帮助,因为:

aList = [a,b]

无效,我必须这样做:

a, b = True, True

或者我错过了什么?

最佳答案

a, b, c, d, e, g, h, i, j = (True,)*9
f = False

关于python - 同时声明多个变量的更优雅的方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5495332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com