Commit 717da2b0 by BellCodeEditor

save project

parent f8412a1b
Showing with 10 additions and 2 deletions
list = ["1","2","3","4"]
list1 = ["5","6"]
list
\ No newline at end of file
list.extend(list1)
list2 = list[2:5]
list3 = list[:5]
list4 = list[2:]
list5 = list[:]
prink(list2)
prink(list3)
prink(list4)
prink(list5)
\ 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