Commit 26095579 by BellCodeEditor

save project

parent fe1c7001
Showing with 9 additions and 5 deletions
a=['1'] # a=['1']
a.extend("2") # a.extend("2")
a.append("3") # a.append("3")
print(a) # a.insert(3,"4")
\ No newline at end of file # print(a)
w=['1','2','3','4']
q=['0']
print(w[0:3])
print(q)
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