python中限制用户输入的方法
例如,我想让用户输入0到2之间的数字,但用户输入了字母或文字或超过2之类,python会报错,有什么方法可以检测错误再让用户强制重新输入?新人求助,望大佬帮忙解决{:10_266:} if判断,ASCII码 本帖最后由 2012277033 于 2021-8-4 14:40 编辑如果只是input方法的话,可以这样处理:
如果需要包括小数的情况
is_num = False
while not is_num:
instr = input("请输入一个数字")
try:
num = float(instr)
if 0<num<2:
is_num=True
except:
pass
如果不包括小数的话可以这样:
instr=""
while not instr.isnumeric() or not '0' < instr < '2':
instr = input("请输入一个数字")
num = int(instr)
s = input('请输入0到2之间的数: ')
while True:
if not s.isdigit() and not 0 <= float(s) <= 2:
s = input('请重新输入: ')
else:
break
#以下输入你的代码... def input_int(prompt="", scope=[]) -> int:
while True:
in_int = input(prompt)
if in_int in map(str, range(scope, scope[-1] + 1)):
return int(in_int)
else:
print("--输入错误!")
if __name__ == "__main__":
num = input_int("请输入区间内的整数:", )
print(num)
2012277033 发表于 2021-8-4 14:32
如果只是input方法的话,可以这样处理:
如果需要包括小数的情况
谢谢啦{:10_303:} qq1151985918 发表于 2021-8-4 15:04
谢谢啦{:10_303:}
页:
[1]