Commit 7c42e69a by BellCodeEditor

auto save

parent 26dfabcc
Showing with 6 additions and 6 deletions
b=['yuan','xia','cao','guan']
bros=["刘备","关羽","张飞"]
for i in range(len(bros)):
print(bros[i])
a=["hua"]
c=["yan","wen"]
b.pop(3)
b.remove('xia')
print(b)
a.insert(1,"guan")
a.extend(c)
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