欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

python以什么划分句块

程序员文章站 2022-03-09 23:25:03
...

python以什么划分句块

python以什么划分句块?

python以缩进格式来划分句块。

这里打开编辑器,新建一个py文件作为示范。

推荐:《python教程

python以什么划分句块

def happy():
    print("Very Happy!")
happy()

创建函数的时候,冒号以后需要进行缩进,标记语句块。

python以什么划分句块

x = 1
while x < 5:
    print(x)
    x += 1

在用while的时候,冒号以后需要进行缩进,标记语句块。

python以什么划分句块

x = 1
if x < 10:
    print("ok")
else:
    print("not ok")

在用if和else语句的时候,冒号以后需要进行缩进,标记语句块。

python以什么划分句块

如果不用标记语句块,是会报错的。

python以什么划分句块

def hey():
    x = 1
    while x < 3:
        print("hey")
        x += 1
        if x == 3:
            print("ok")
hey()

每一次冒号以后都是需要标记语句块,而且要根据格式一层一层标记。

python以什么划分句块

以上就是python以什么划分句块的详细内容,更多请关注其它相关文章!

相关标签: python