python创建可变变量的方法

2024年06月13日 python变量 Python51

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创建可变变量的方法,希望对大家有所帮助。

本文链接:http://so.lmcjl.com/news/6466/

展开阅读全文