Answers for "how to check if there is a uppercase in a string python"

30

python to uppercase

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

>> "RANDOM STRING"
Posted by: Guest on September-16-2020
1

how to check uppercase in python

an_uppercase_check = an_upper.isupper()
Posted by: Guest on December-26-2021

Code answers related to "how to check if there is a uppercase in a string python"

Python Answers by Framework

Browse Popular Code Answers by Language