请用Python写一个获取用户输入数字,并根据数字大小输出不同信息的脚本
2023-06-29
代码如下(Python 3.0 下调试通过)
x = int(input(“Please enter an integer:”))
if x < 0:
x = 0
print (‘Negative changed to zero’)
elif x == 0:
print (‘Zero’)
elif x == 1:
print (‘Single’)
else:
print (‘More’)
请用Python写一个获取用户输入数字,并根据数字大小输出不同信息的脚本2023-06-29 代码如下(Python 3.0 下调试通过) x = int(input(“Please enter an integer:”)) if x < 0: x = 0 print (‘Negative changed to zero’) elif x == 0: print (‘Zero’) elif x == 1: print (‘Single’) else: print (‘More’) 相关内容: |