Python的缩进方法
·使用tab键
·缩进几个空格(一般为4个)
比如下面这个例子:
>>>ifTrue: ...print("thisistrue")// ...print("thisistrue")// ...else: ...print("thisisfalse")// ...print("thisisfalse")//
输出结果:
thisistrue thisistrue
需要注意的是,虽然Python语法允许代码块随意缩进几个空格,但是位于同一个代码块中的所有语句必须保持相同的缩进,不能一下缩
原文来自:https://www.py.cn© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容