Answers for "take first n char of string 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 "take first n char of string python"

Python Answers by Framework

Browse Popular Code Answers by Language