how to get the first 5 letters of a string 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'