Python中if else语句出错

图片[1]-Python中if else语句出错-uusu优素-乐高,模型,3d打印,编程

Python中用if……else语句编写代码,结果出现错误:

源码为:

number=2
ifnumber==2:
print("youarefool")
else:
print("youarebeautiful")

错误提示为:

p1.jpg

仔细看了一下,结果是else的缩进发生了错误。

修正后的代码为:

number=2
ifnumber==2:
print("youarefool")
else:
print("youarebeautiful")

运行结果为:

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容