Post

@PythonPr Option b is correct. Because indexing starts from zero which means zero represents the first element which is 'p', 1 represents the 2nd element which is 'y' and so on for all the elements.
English

@PythonPr answer is B. Y.
In Python, list indexing starts at 0. Therefore, the element at index 1 of my_list is the second item, which is 'y'.
my_list[0] is 'p'
my_list[1] is 'y'
my_list[2] is 't'
English


































