Commit 9921b75f by BellCodeEditor

auto save

parent 5743c1bd
Showing with 4 additions and 7 deletions
a=["华雄"]
a.extend("好吧")
a.insert(1,"关羽")
list=['袁术','夏侯惇']
a.append(list)
a=['华雄','袁术','夏侯惇','诸葛亮']
a.pop(1)
a.remove('华雄')
print(a)
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