Commit d22591cb by BellCodeEditor

auto save

parent 4c7d456a
Showing with 6 additions and 0 deletions
lis = [1, 2, 3, 4, 5, 6]
del lis[1:2]
lis.remove(4)
lis.pop(0)
lis[0] = lis.pop(0)
print(lis)
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