Python3教程之基础语法(行与缩进,多行语句,数字(Number)类型)
行与缩进
python最具特色的就是使用缩进来表示代码块,不需要使用大括号 {} 。
缩进的空格数是可变的,但是同一个代码块的语句必须包含相同的缩进空格数。实例如下:
[C#] 纯文本查看 复制代码 实例(Python 3.0+)if True: print ("True")else: print ("False")
以下代码最后一行语句缩进数的空格数不一致,会导致运行错误:
[C#] 纯文本查看 复制代码 实例if True:
print ("Answer")
print ("True")
else:
print ("Answer")
print ("False") # 缩进不一致,会导致运行错误
以上程序由于缩进不一致,执行后会出现类似以下错误:
[C#] 纯文本查看 复制代码 File "test.py", line 6 print ("False") # 缩进不一致,会导致运行错误 ^IndentationError: unindent does not match any outer indentation level
多行语句
Python 通常是一行写完一条语句,但如果语句很长,我们可以使用反斜杠 \ 来实现多行语句,例如:
[C#] 纯文本查看 复制代码 total = item_one + \ item_two + \ item_three
在 [], {}, 或 () 中的多行语句,不需要使用反斜杠 \,例如:
total = ['item_one', 'item_two', 'item_three', 'item_four', 'item_five'
数字(Number)类型
python中数字有四种类型:整数、布尔型、浮点数和复数。- int (整数), 如 1, 只有一种整数类型 int,表示为长整型,没有 python2 中的 Long。
- bool (布尔), 如 True。
- float (浮点数), 如 1.23、3E-2
- complex (复数), 如 1 + 2j、 1.1 + 2.2j
|