python get first character of a string code example
Example 1: how to find the first letter of an item in python
mylist[0][0] # get the first character from the first item in the list
Example 2: find first instance of character in string python
mystring.findfirstindex('dude') # should return 4