Commit b6359acd by BellCodeEditor

auto save

parent c593e827
Showing with 15 additions and 0 deletions
a=["华盛顿"]
b=["伦敦","巴黎"]
a.extend(b)
print(a)
c=["桦树"]
c.append("橡树")
c.append("杉树")
print(c)
d=["可乐"]
d.insert(1,"咖啡")
d.insert(2,"奶茶")
print(d)
\ 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