Python笔记:list和tuple

list列表:中括号 list是一种有序的集合,可以随时添加和删除其中的元素。 关于list的一些操作: classmates = [‘Michael’, ‘Bob’, ‘Tracy’] # 用len()函数可以获得list元素的个数 le […]

Scroll to top