摘要:
1. 新创建一个空的列表,并加入新的元素 (1)创建空列表 tabulation1 = list() (2)append(方法一) tabulation1.append('紫霞')直接往末尾插入 (3)insert(方法二) tabulation1.insert(1,'紫霞') 指定位置插入2.py 阅读全文
posted @ 2021-08-05 10:59
代码小绵羊
阅读(375)
评论(0)
推荐(0)