Commit 2f32b2c8 by BellCodeEditor

save project

parent 2c512201
Showing with 6 additions and 5 deletions
a=['a','b','a','d','e','a'] a=[1,2,3]
for i in range(3): b=['a','b','c']
a.remove('a') b.insert(1,1)
print(a) b.insert(3,2)
\ No newline at end of file b.insert(5,3)
print(b)
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