Commit 99d942ec by BellCodeEditor

auto save

parent 8780c9b9
Showing with 11 additions and 0 deletions
a=['aa','bb','cc','dd']
a.remove('bb')
print(a)
a.append('ee')
print(a)
a.insert(1,'bb')
print(a)
b=['ff','gg']
a.extend(b)
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