Commit 2de2e443 by BellCodeEditor

save project

parent ac725d3a
Showing with 13 additions and 3 deletions
d=['关羽','刘备','张飞']
print(d)
\ No newline at end of file
d=['华雄']
d.insert(1,'曹操')
print(d)
s=['华雄']
s.append('曹操')
print(s)
w=['华雄']
w.extend(['颜良','文丑'])
print(w)
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