Commit 5eab770b by BellCodeEditor

save project

parent 9b322d77
Showing with 7 additions and 0 deletions
......@@ -2,3 +2,9 @@
list=['苹果','香蕉','西瓜','香蕉','桃子','香蕉']
list.remove('香蕉')
print(list)
list1=['火龙果','草莓']
list.extend(list1)
list.append('火龙果')
list.append('草莓')
list.insert(10,'火龙果')
list.insert(11,'草莓')
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment