def word_is_capitalized(): return word[0].isupper() print(word_is_capitalized("Hello")) # Outputs True