Answer:
print(myList[2])
Step-by-step explanation:
Hi,
To print the third element of the list myList, we can use the following line of code: print(myList[2]).
The index for the third element is 2 because element indexing in Python starts at 0. So if you want to print the n-th element in the list, the index will be n-1.
Good luck!