- 创建 .idea 目录和相关配置文件,设置项目结构 - 添加多个课堂成果示例代码,涵盖不同主题和功能 - 创建和配置 .gitignore 文件,忽略特定文件和目录
9 lines
203 B
Python
9 lines
203 B
Python
#请在这里编写代码
|
|
animals = ["猴子", "小花猪", "蝴蝶", "豹子"]
|
|
#animals.pop()
|
|
#del animals[3]
|
|
animals.remove('豹子')
|
|
animals.insert(1,"大象")
|
|
animals.append('绵羊')
|
|
print(animals)
|