“Upper python python.org” 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

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

Réponses similaires à “Upper python python.org”

Questions similaires à “Upper python python.org”

Plus de réponses similaires à “Upper python python.org” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code