您现在的位置是:课程教程文章

Python中if else语句出错

2023-12-18 18:05课程教程文章 人已围观

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

源码为:

number = 2
if number == 2:
    print("you are fool")
    else:
    print("you are beautiful")

错误提示为:

p1.jpg

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

修正后的代码为:

number = 2
if number == 2:
    print("you are fool")
else:
    print("you are beautiful")

运行结果为:

p3.jpg

课程教程:Python中if else语句出错

上一篇:python i18n不能使用

下一篇:没有了

站点信息

  • 文章统计篇文章