|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
age = 17
if age >= 18:
print("You are old enough to vote!")
print("Have you registered to vote yet?")
else:
print("Sorry, you are too young to vote.")
print("Please register to vote as soon as you turn 18!")
上面print前面是缩进
我上面的几串代码显示最后一个print前面不能缩进,这是为啥???我上面if下面能跟两条print,这里else为啥不能跟两条print了???
代码没问题
- age = 17
- if age >= 18:
- print("You are old enough to vote!")
- print("Have you registered to vote yet?")
- else:
- print("Sorry, you are too young to vote.")
- print("Please register to vote as soon as you turn 18!")
复制代码
|
|