Commit fc5eed86 by BellCodeEditor

save project

parent 4c5a7732
Showing with 11 additions and 2 deletions
...@@ -7,6 +7,10 @@ bug2=["刘备",161,9.1] ...@@ -7,6 +7,10 @@ bug2=["刘备",161,9.1]
bug3=["张飞",166,8.3] bug3=["张飞",166,8.3]
bug[0]="关羽" bug[0]="关羽"
bug[1]="刘备" bug[1]="刘备"
bug.pop(2) a=["lili","mimi"]
bug.remove("刘备") #bug.pop(2)
#bug.remove("刘备")
bug.insert(0,"颜良")
bug.append("文丑")
bug.extend(a)
print(bug) print(bug)
\ No newline at end of file
a=['华雄']
a.append('颜良','文丑')
print(a)
\ 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