有没有办法在名称中定义带变量的东西?

时间:2015-04-03 14:08:21

标签: python python-3.x

我想在运行时根据用户输入在我的代码中添加字符串。

类似的东西:

import random
set = (1,2,3,4)
x = 1
def newstring():
   etc = random.choice(set)
   (no,x) = etc  
   x = x + 1
   nextstring = input("Next string?")

nextstring = input("Next string?")

while nextstring == "y":
    newstring()
    print(no + x)

我想让(n,x)变量。

因此,每当用户要求换一个新字符串时,它会设置一个新变量,如no1 = 4,其中1为1,因为x为1而4为4,因为它是随机选择。然后新的变量将是no2,具有完全不同的值

0 个答案:

没有答案