Open In App

Python-Quizzes | Python List Quiz | Question 12

Like Article
Like
Save
Share
Report

Question 12: Find the output of the following program: 

Python3




list = ['python', 'learning', '@', 'Geeks', 'for', 'Geeks']
print(list[0:6:2])


(A)

[‘python’, ‘@’, ‘for’]

(B)

[\’Geeks\’, \’Geeks\’, \’learning\’]

(C)

[\’python\’, \’learning\’, \’@\’, \’Geeks\’, \’for\’, \’Geeks\’]

(D)

[\’python\’, \’Geeks\’]


Answer: (A)

Explanation:

In python list slicing can also be done by using the syntax listName[x:y:z] where x means the initial index, y-1 defines the final index value and z specifies the step size. If anyone of the values among x, y, and z is missing the interpreter takes the default value.


Quiz of this Question
Please comment below if you find anything wrong in the above post


Last Updated : 17 Sep, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads