how to get the first letter of a string in a list in python code example
Example: python get first character of string
string = 'This is a string'
print(string[0])
#output: 'T'
string = 'This is a string'
print(string[0])
#output: 'T'