【发布时间】:2019-09-26 06:49:36
【问题描述】:
在上了一门教我们伪代码的课程后,我开始使用 Python。如果用户输入小数而不是整数,我如何进行验证循环以继续该功能?在当前状态下,当用户输入超出可接受范围的数字时,我已经让它识别,但如果用户输入十进制数字,它就会崩溃。是否有另一个可以识别小数的验证循环?
def main():
again = 'Y'
while again == 'y' or again == 'Y':
strength_score = int(input('Please enter a strength score between 1 and 30: '))
# validation loop
while strength_score < 1 or strength_score > 30 :
print ()
print ('Error, invalid selection!')
strength_score = int(input('Please enter a whole (non-decmial) number between 1 and 30: '))
# calculations
capacity = (strength_score * 15)
push = (capacity * 2)
encumbered = (strength_score * 5)
encumbered_heavily = (strength_score * 10)
# show results
print ()
print ('Your carrying capacity is' , capacity, 'pounds.')
print ('Your push/drag/lift limit is' , push, 'pounds.')
print ('You are encumbered when holding' , encumbered, 'pounds.')
print ('You are heavyily encumbered when holding' , encumbered_heavily, 'pounds.')
print ()
# technically, any response other than Y or y would result in an exit.
again = input('Would you like to try another number? Y or N: ')
print ()
else:
exit()
main()
【问题讨论】:
-
请提供错误信息 :) 会有很大帮助的。
-
看看错误处理,特别是
try .. except ...块。
标签: python