hmao的日记

hmao的日记



今日学习

hmao · 2021年11月06日 05:25 pm · 0浏览 · 长文


1.课时

单词

#coding:utf-8
append添加
append添加
append添加
insert插入
insert插入
insert插入

2.append使用方法

cats=['白','黑','灰']
cats.append('花猫')
print(cats)

3.cities使用方法

# coding:utf-8
#创建列表cities存储中国五个城市名
cities=['大连','北京','上海','杭州','天津']
cities.insert(0,'长春')
print(cities)
#在列表中添加自己所在城市并在控制台显示所有城市名

4.pop删除使用方法

cakes=['提拉米苏','草莓蛋糕','饭堂补丁','栓乃补丁','叫颗粒dad']
cakes.pop(2)
print(cakes)

5.remove函数移除方法

toys=['1','2','3']
toys.remove('2')
print(toys)
#使用remove函数移除坏掉的玩具




thumb_up赞赏文章


comment 评论区

添加新评论





  • ©2025 bilibili.com

textsms
内容不能为空
account_circle
昵称不能为空
email
邮件地址格式错误
web
beach_access
验证码不能为空
keyboard发表评论


star_outline 咱快来抢个沙发吧!