Commit 905ba242 by BellCodeEditor

auto save

parent c593e827
Showing with 14 additions and 0 deletions
a=['华雄']
a.append('关羽')
b=['华雄']
b.insert(1,'关羽')
c=['华雄']
d=['颜良','文丑']
c.extend(d)
print(a)
print(b)
print(c)
\ 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