Commit 196577c9 by BellCodeEditor

save project

parent da808c4c
Showing with 12 additions and 0 deletions
a = [1,2,3,4,2]
a.pop(2)
print(a)
a.remove(2)
print(a)
a.append(5)
print(a)
a.insert(4,8)
print(a)
a.extend([9,10])
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