Como imprimir o caráter 3erd de uma entrada no Python

exampleString = "This is an example sentence"
print(exampleString[2])
Frightened Flamingo