Commit 34f4c105 by BellCodeEditor

save project

parent 26b3b1d4
Showing with 13 additions and 0 deletions
a=["a", "b", "c","d"]
a.pop(2)
print(a)
a.remove("d")
print(a)
a.insert(2,"c")
print(a)
a.append("d")
print(a)
b=["x","y","z"]
a.extend(b)
print(a)
\ 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