Commit f556c189 by BellCodeEditor

save project

parent ec5e5eeb
Showing with 16 additions and 0 deletions
a=["a","b","c","d","e","f"]
a.pop(3)
print(a)
a.remove("b")
print(a)
a.insert(3,"d")
print(a)
a.append("k")
print(a)
b=["x","y","z"]
a.extend(b)
print(a)
print(a[:3])
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