Answers for "python how can we find the first letter of a string"

18

python get first character of string

string = 'This is a string'
print(string[0])
#output: 'T'
Posted by: Guest on April-18-2020

Code answers related to "python how can we find the first letter of a string"

Python Answers by Framework

Browse Popular Code Answers by Language