Answers for "find first instance of character in 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
-2

find first instance of character in string python

mystring.findfirstindex('dude') # should return 4
Posted by: Guest on February-25-2020

Code answers related to "find first instance of character in string python"

Python Answers by Framework

Browse Popular Code Answers by Language