所以,我在重启脚本本身时遇到了麻烦。我正在制作一个简单的程序,我希望有一个例子选择:
print ('would you like to make another calculation')
choice3 = input(' Choose: [Y], [N]')
if choice3.lower() == 'y':
print ('OK!')
time.sleep(3)
我想在那里重新启动它。如果有人能帮助我,谢谢......我真的很感激
答案 0 :(得分:2)
您可以使用loop
:
while True:
print ('would you like to make another calculation')
choice3 = input(' Choose: [Y], [N]')
if choice3.lower() == 'y':
print ('OK!')
time.sleep(3)
else:
break