Question-129: When you run below program, then what would be printed on console?
listA= [1,2,3,4,5]
listB=listA[:3]
print(listB)
listC=listA[2:]
print(listC)
1.
[1, 2, 3]
[3, 4, 5]
2.Get all Questions and Answer from here
3.You need to have paid subscription to access all questions
4.Thanks for considering Python Certification Material
Answer: A
Exp:
If you omit slicing start or end element
- If you omit start element in slice. Then it would consider the 0th
- If you omit last or end element in slice. Then sub-list would include all the elements till end from the start index.
listA= [1,2,3,4,5]
listB=listA[:3] You can access to full explanation to question and answer from this page. |