“Isupper () in Python” Code-Antworten

Isupper () in Python

#!/usr/bin/python

str = "THIS IS STRING EXAMPLE....WOW!!!"; 
print str.isupper()
#Prints True
str = "THIS is string example....wow!!!";
print str.isupper()
#prints False
Stupid Stoat

Python String: .upper ()

# string арга .upper() нь бүх жижиг үсгүүдийг том үсгээр хөрвүүлсэн мөрийг буцаана.

dinosaur = "T-Rex"
 
print(dinosaur.upper()) 
# Prints: T-REX
Puzzled Porcupine

Ähnliche Antworten wie “Isupper () in Python”

Fragen ähnlich wie “Isupper () in Python”

Weitere verwandte Antworten zu “Isupper () in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen