python中数字和字符串不能直接运算
如 0 + '5' #unsupported operand type(s) for +: 'int' and 'str'
'0' + 5 #Can't convert 'int' object to str implicitly
若要运算,需要使用函数转换类型 int()、float()、str()....
方法与函数
方法是特定对象已定义好的函数,他把该对象作为第一个参数处理。
list的索引有负值索引,-1表示list倒数第一个元素
list和str都可以切片 [:5]取前5个,[1:2]取第2个
list是有序可变的
str是有序不可变的
网友评论