Commit 8ba9e391 by BellCodeEditor

save project

parent 0f3d4587
Showing with 8 additions and 2 deletions
b=['t','e','f','r']
b.remove('r')
print(b)
a=['d']
a.insert(1.'r')
print(a)
a=['d']
c=['o','p']
a.extend(c)
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