A character in a string



examples/strings/string_char.py
text = "Hello World"

a = text[0]
print(a)      # H

b = text[6]
print(b)      # W