“Como verificar a maçaneta no Python” Respostas de código

python para maiúsculas

text = "Random String"
text = text.upper() #Can also do 
text = upper(text)
print(text)

>> "RANDOM STRING"
Delta Sierra

Como verificar se o texto está no maiúsculas em Python

# plz suscribe to my youtube channel -->
# https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A

Text = "python is easy"
print(Text.isupper())
Programmer of empires

python para maiúsculas

original = Hello, World!

#both of these work
upper = original.upper()
upper = upper(original)
DaWildOne

Como verificar a maçaneta no Python

an_uppercase_check = an_upper.isupper()
Stockholm

string python para manchas

# String to Uppercase by Matthew Johnson
myStr = "Dna"
print(myStr.upper())
#OUTPUT: "DNA"
Matthew Johnson

Respostas semelhantes a “Como verificar a maçaneta no Python”

Perguntas semelhantes a “Como verificar a maçaneta no Python”

Mais respostas relacionadas para “Como verificar a maçaneta no Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código