Python Get Nth Little of Alphabet

# Basic syntax:
import string
string.ascii_uppercase[5]
--> 'F'
Charles-Alexandre Roy