如何让用户输入某人的距离?
e.g。
"How far away is the closest person: "
然后告诉我它是否低于600米
e.g。
"Canon start Rocket Lift Off because the closest person is less than 600m away
答案 0 :(得分:1)
使用Python的input()
方法。
>>> a = input("Input the distance: ")
Input the distance: 800
>>> print(a)
800
对于600米的要求,请阅读if
statements。
>>> a = "test"
>>> if a == "test":
... print("true")
...
true
答案 1 :(得分:0)
要问用户一个问题,请执行以下操作:
x = raw_input("How far away is the closest person: ")
for python 2.7或
x = input("How far away is the closest person: ")
for python 3
然后你可能已经解决了这个问题:
if x < 600:
# do something
答案 2 :(得分:0)
只需使用print()
来显示信息,input()
来接收输入信息,使用if
语句来确定距离是否足够。 float(input())
表示将输入的内容转换为浮点型对象。
print "How far away is the closest person: "
if float(input()) <= 600:
print "Canon start Rocket Lift Off because the closest person is less than 600m away"