输入负数时如何向用户打印消息?
发布时间:2022-09-03 07:31:55 275
相关标签: # node.js
我现在正在学习try和except语句,我希望程序在插入负数时打印a消息,但我不知道如何创建此输出的语句顺序:
print("how many dogs do you have?")
numDogs= input()
try:
if int(numDogs)>=4:
print("that is a lof of dogs")
else:
print("that is not that many dogs")
except:
print("you did not enter a number")
我希望程序在用户输入负数时打印输出。我该怎么做?
非常感谢。
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报