English

What will be the output of the following code segment: myList = [1,2,3,4,5,6,7,8,9,10] for i in range(0,len(myList)): if i%2 == 0: print(myList[i]) - Computer Science (Python)

Advertisements
Advertisements

Question

What will be the output of the following code segment:

myList = [1,2,3,4,5,6,7,8,9,10]
 for i in range(0,len(myList)):
           if i%2 == 0:
                print(myList[i])
Short Note

Solution

Here, the elements of the list will be printed which are at index such that index%2==0. The index of the list can be represented as:

 Element 1 2 3 4 5 6 7 8 9 10
 Index  0 1 2 3 4 5 6 7 8 9

Therefore, the output will be the elements at index 0, 2, 4, 6, 8 i.e.
1
3
5
7
9

shaalaa.com
List Methods and Built-in Functions
  Is there an error in this question or solution?
Chapter 9: Lists - Exercise [Page 205]

APPEARS IN

NCERT Computer Science [English] Class 11
Chapter 9 Lists
Exercise | Q 3. | Page 205
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×