English

What will be the output of the following statement? list1 = [1,2,3,4,5,6,7,8,9,10] list1[::-2] list1[:3] + list1[3:] - Computer Science (Python)

Advertisements
Advertisements

Question

What will be the output of the following statement?

list1 = [1,2,3,4,5,6,7,8,9,10]
list1[::-2]
list1[:3] + list1[3:]
Short Note

Solution

The statement in line 2 has a negative step size. This means that the list will be traversed in reversed order with step size 2.

OUTPUT: [10, 8, 6, 4, 2]

The statement in line 3 will print the complete list. i.e. [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

shaalaa.com
List
  Is there an error in this question or solution?
Chapter 9: Lists - Exercise [Page 204]

APPEARS IN

NCERT Computer Science [English] Class 11
Chapter 9 Lists
Exercise | Q 1. iii. | Page 204
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×
Our website is made possible by ad-free subscriptions or displaying online advertisements to our visitors.
If you don't like ads you can support us by buying an ad-free subscription or please consider supporting us by disabling your ad blocker. Thank you.