Commit 47af2bd1 by BellCodeEditor

save project

parent 26b3b1d4
Showing with 18 additions and 0 deletions
# list=["1","2","1","3","1","4"]
# list.remove("1")
# list.pop(1)
# print(list)
a=["5"]
a.insert(1,"6")
a.append("7")
a.append("8")
b=["9","10"]
a.extend(b)
print(a)
SUS=["1"]
c=a[2:5]
SUS.extend(c)
print(SUS)
\ 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