Commit 90d80f4a by BellCodeEditor

save project

parent 2987fce0
Showing with 12 additions and 0 deletions
a=['华雄']
a.append('颜良','文丑')
print(a)
\ No newline at end of file
b=['袁术','夏侯惇','曹操']
b.insert(6,6)
print(b)
b.append('厉害')
c=['lucas','jaco']
b.extend(c)
print(b)
\ 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