我对Python和编码有点新手,我需要一些使用raw_input
和if
语句的帮助。我的代码如下;
age = raw_input ("How old are you? ")
if int(raw_input) < 14:
print "oh yuck"
if int(raw_input) > 14:
print "Good, you comprehend things, lets proceed"
答案 0 :(得分:3)
您的代码有三个问题:
age
,因此请使用age
。print(...)
而不是print ...
age = raw_input("How old are you? ")
if int(age) < 14:
print("oh yuck")
else:
print("Good, you comprehend things, lets proceed")
请注意,这不等同于您的代码。您的代码会跳过案例age == 14
。如果你想要这种行为,我建议:
age = int(raw_input("How old are you? "))
if age < 14:
print("oh yuck")
elif age > 14:
print("Good, you comprehend things, lets proceed")
raw_input()
和int()
答案 1 :(得分:0)
if int(raw_input) < 14:
应为int(age)
,其他if
应相同。 raw_input
是您调用的函数,但您将结果存储在变量age
中。你不能把一个函数变成一个整数。
当您进行输入时,您可以只执行一次,而不是将年龄重复转换为整数:
age = int(raw_input("How old are you? "))
然后你可以if age > 14
等等,因为它已经是一个整数。
我假设缩进问题(每个if
后面的行应缩进至少一个空格,最好是四个)只是格式化问题。