I really tried to get this without asking for help.
mylist = ["The", "earth", "Revolves", "around", "Sun"]
print (mylist)
for e in mylist:
# one of these two choices should print something. Since neither
does, I am missing something subtle.
if e[0].isupper == False:
print ("False")
if e[0].isupper == True:
print ("True")
I am sure in the first , third and fifth choices should be true. Right
now, I am just testing the first letter of each word.
--
https://mail.python.org/mailman/listinfo/python-list