在python中,是否可以在列表中存储变量?例如,如果我想根据列表中的索引获得变量,我可以这样做吗?我可以提出一个替代解决方案,但我只是想知道这样的事情是否可行。
此场景的一个示例就像排序列表并让元素代表用户输入。
答案 0 :(得分:1)
也许是这样的事情?
side1 = int(input("Please enter the value of side 1: "))
side2 = int(input("Please enter the value of side 2: "))
side3 = int(input("Please enter the value of side 3: "))
side_list = [side1, side2, side3]
是的,这很好用。