缩进要对
多行语句:使用反斜杠\
total = item_one + \item_two + \item_three
在 [], {}, 或 () 中的多行语句,不需要使用反斜杠 \
total = ['item_one', 'item_two', 'item_three','item_four', 'item_five']
复数complex
a+bj
: a实部 b虚部 j虚数单位
字符串
(1)多行字符串:三引号(''' 或 """)
(2)转义符 \
使用r
可以让反斜杠不发生转义: r"this is a line with \n"
则\n 会显示
(3)用+
运算符连接在一起,用*
运算符重复
(4)两种索引方式:从左往右以0开始,从右往左以-1开始
(5)切片 str[start:end:step]
step:步长