5.1 python的缩进

简介: python 并不像其他语言一样要求以大括号来分辨逻辑,仅仅使用 tab 键(默认的四个空格)来区分代码。比如a=input('Please input a num: ')b=0if int(a)>b:    print('a>0')else:    print(...

python 并不像其他语言一样要求以大括号来分辨逻辑,仅仅使用 tab 键(默认的四个空格)来区分代码。比如

a=input('Please input a num: ')

b=0

if int(a)>b:

   print('a>0')

else:

   print('a<0')


返回结果:当输入小于0时,将输出 a<0,当输入大于0时,将输出 a>0。

上面语句中区分 if 和 else 的界限仅仅由空格缩进体现,严格的缩进机制使得代码非常整齐规范。


目录
相关文章
|
C语言 Python
Python基础分享之缩进和选择
Python基础分享之缩进和选择
|
4月前
|
开发者 Python
Python中多行注释
【7月更文挑战第28天】
357 3
|
6月前
|
Python
Python应用中语法不正确的缩进
【5月更文挑战第17天】
33 1
|
6月前
|
IDE 开发工具 Python
Python应用语法中缩进错误
【5月更文挑战第18天】
49 1
|
6月前
|
IDE 开发工具 C++
python中的缩进错误
【4月更文挑战第23天】
69 2
|
6月前
|
Python
Python基础语法,Python中的缩进规则是什么?
Python基础语法,Python中的缩进规则是什么?
92 1
|
Python
python注释
python注释
|
算法 IDE 开发工具
【100天精通python】Day2:python入门_ python的语言基础,编码规范,代码注释,缩进,保留字,标识符
【100天精通python】Day2:python入门_ python的语言基础,编码规范,代码注释,缩进,保留字,标识符
213 0
|
算法 Unix Apache
Python3 注释
Python3 注释
|
Python
Python代码缩进格式报错
Python代码缩进格式报错
125 0