मराठी

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

प्रश्न

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])
टीपा लिहा

उत्तर

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
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 9: Lists - Exercise [पृष्ठ २०५]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
पाठ 9 Lists
Exercise | Q 3. | पृष्ठ २०५
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×