我想在运行时根据用户输入在我的代码中添加字符串。
类似的东西:
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)
因此,每当用户要求换一个新字符串时,它会设置一个新变量,如no1 = 4,其中1为1,因为x为1而4为4,因为它是随机选择。然后新的变量将是no2,具有完全不同的值