Suppose List1 Is 2 33 222 14 25 What Is List11 #348
Suppose list1 is [2, 33, 222, 14, 25], What is list1[:-1]?
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Python Lists - Python Lists - Quiz No.1.
Suppose list1 is [2, 33, 222, 14, 25], What is list1[:-1]?
[2, 33, 222, 14]
Error
25
[25, 14, 222, 33, 2]