texto = "Programação Python" print(texto.istitle()) # Saída: True texto2 = "Programação python" print(texto2.istitle()) # Saída: False