Appearance
序列包括字符串,列表和元组。
序列的常用操作
字符串拼接:
a = '1' b = '字符串' print('%s 是 %s' %(a, b)) // 1是字符串
元组:
列表:
元组和列表区别: 元组内容不可更改,列表可以更改