python创建可变变量的方法
1、可以使用字典来完成此操作。字典是键和值的存储。
>>> dct = {'x': 1, 'y': 2, 'z': 3}>>> dct
{'y': 2, 'x': 1, 'z': 3}
>>> dct["y"]
2
2、可以使用变量键名来实现变量变量的效果,而没有安全风险。
>>> x = "spam">>> z = {x: "eggs"}
>>> z["spam"]
'eggs'
对于正在考虑做类似事情的情况
var1 = 'foo'var2 = 'bar'
var3 = 'baz'
...
3、列表可能比字典更合适。列表表示对象的有序序列,具有整数索引。
lst = ['foo', 'bar', 'baz']print(lst[1]) # prints bar, because indices start at 0
lst.append('potatoes') # lst is now ['foo', 'bar', 'baz', 'potatoes']
以上就是python创建可变变量的方法,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
以上是 python创建可变变量的方法 的全部内容, 来源链接: utcz.com/z/545615.html