Commit 258aad00 by BellCodeEditor

save project

parent e205b8c3
Showing with 6 additions and 5 deletions
a=['a','c','d']
b=['b']
a.append('b')
print(a)
\ No newline at end of file
a=['a','b','c','d','e','f']
b=['g']
a[2:5]
b.extend(a)
print(b)
\ 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