Commit ede83f91 by BellCodeEditor

save project

parent 309657cf
Showing with 4 additions and 2 deletions
......@@ -4,8 +4,10 @@ list.remove('香蕉')
print(list)
list1=['火龙果','草莓']
list.extend(list1)
print(list)
list.append('火龙果')
list.append('草莓')
print(list)
list.insert(10,'火龙果')
list.insert(11,'草莓')
print()
\ No newline at end of file
print(list)
\ 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