How to check if a character is upper-case in Python? February 21, 2023 by Tarik To test that all words start with an upper case use this: print all(word[0].isupper() for word in words)