How would I get the first character from the first string in a list in Python?
It seems that I could use mylist[0][1:] but that does not give me the f
mylist[0][1:]
Try mylist[0][0]. This should return the first character.
mylist[0][0]