Commit 839d6a57 by BellCodeEditor

auto save

parent c6188a1e
Showing with 20 additions and 0 deletions
def test_func(list1):
print(list1[4:5]+list1[7:8])
list1=[3,4,12,5,4,3,6,7,3]
test_func(list1)
"""
def test_func(list1):
print(list1[4:5]+list1[7:8])
list1=[3,4,12,5,4,3,6,7,3]
test_func(list1)
"""
list1=[3,21,4,36,7]
list1.pop()
list1.pop(2)
list1.pop()
print(list1)
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