Commit d298f861 by BellCodeEditor

save project

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