Answers for "program to find out first character of every string in python"

10

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 "program to find out first character of every string in python"

Python Answers by Framework

Browse Popular Code Answers by Language