texto = "python" print(texto.islower()) # Saída: True texto2 = "Python" print(texto2.islower()) # Saída: False