“chaîne python en majuscules” Réponses codées

Python en majuscules

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

>> "RANDOM STRING"
Delta Sierra

Python en majuscules

original = Hello, World!

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

Comment vérifier les majuscules dans Python

an_uppercase_check = an_upper.isupper()
Stockholm

Upper python python.org

text = "Random String"
text = text.upper()
print(text)
>> "RANDOM STRING"
Felipebros

Python en majuscule

# example string
string = "this should be uppercase!"
print(string.upper())

# string with numbers
# all alphabets should be lowercase
string = "Th!s Sh0uLd B3 uPp3rCas3!"
print(string.upper())
Unusual Unicorn

chaîne python en majuscules

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

Réponses similaires à “chaîne python en majuscules”

Questions similaires à “chaîne python en majuscules”

Plus de réponses similaires à “chaîne python en majuscules” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code