python如何实现跳转到代码指定行
比如一段检测用户输入的字符串是否为数字的代码temp = input("请输入数字:")
#跳转到这里
if temp.isdigit():
guess = int(temp)
else:
temp = input("别调皮,输入数字:")
#从这里 不知所云 用循环就可以了
temp = input("请输入数字:")
#跳转到这里
while True:
if temp.isdigit():
guess = int(temp)
break
else:
temp = input("别调皮,输入数字:")
#从这里
逃兵 发表于 2021-7-19 14:16
用循环就可以了
{:10_254:}谢谢 第二行加一个while True:
后面的代码都缩进4格
页:
[1]