ChARAT DI PYTHON
givenString = "HELLO PYTHON"
charVariable = givenString[1] #This is the syntax to access a character from the givenString
print(charVariable) #Prints the character
Weary Walrus