Python-Quizzes | Python List Quiz | Question 14

Last Updated :
Discuss
Comments

Find the output of the following program: 

Python
li = ['a', 'b', 'c', 'd', 'e'] 
print(li[10:] )

[\'a\', \'b\', \'c\', \'d\', \'e\']

[ \'c\', \'d\', \'e\']

[ ]

[\'a\', \'b\']

Share your thoughts in the comments