Python String Indexing and Slicing Presentation


This is the presentation associated with the python string indexing and slicing video.

Download Presentation

Python String Indexing and Slicing Video Question

This is the question that was asked in the python string indexing and slicing video

Question : 

What is the output of the following code ?
In [ ]:
car = "Mercedes"
print(car[6:-6:-1])
In [1]:
car = "Mercedes"
print(car[6:-6:-1])
edec