Commit 2f32b2c8 by BellCodeEditor

save project

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