Commit 557b0ea3 by BellCodeEditor

save project

parent 811b4413
Showing with 3 additions and 8 deletions
W=['A','B','C','D']
W[1]='B'
W[2]='A'
W.pop(2)
W.remove('A')
W.insert(1,'S')
W.append('R')
W.extend('M')
W=['A','B','C','D','E','F','G']
W=W[1:3]
print(W)
\ 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