gpt4 book ai didi

Python while 循环

转载 作者:行者123 更新时间:2023-12-04 10:26:49 26 4
gpt4 key购买 nike

我在 python 3 中有这段代码,用于检查输入错误,但我需要确定输入是一个整数,如果不打印错误消息。

谁能帮我找出while循环中的代码。
谢谢

price = 110;

ttt = 1;

while price < 0 or price > 100:

price = input('Please enter your marks for Maths:');
ttt =ttt +1;
if ttt >= 2:
print( 'This is an invalid entry, Please enter a number between 0 and 100')

最佳答案

使用 int()函数转换为整数。当它无法进行转换时,这将引发 ValueError :

try:
price = int(price)
except ValueError as e:
print 'invalid entry:', e

关于Python while 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14062266/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com