Commit e20ed9bf by BellCodeEditor

save project

parent 6a980f48
Showing with 11 additions and 0 deletions
b=['1','2','3','4']
b.remove('4')
print(b)
a=['5']
a.insert(1,'4')
print(a)
a=['5']
c=['6','7']
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