Answers for "what does .upper do in python"

6

python uppercase

my_string = "this is my string"
print(my_string.upper())
# output: "THIS IS MY STRING"
Posted by: Guest on January-23-2021
0

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
Posted by: Guest on June-13-2020
0

uppercase python

# 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())
Posted by: Guest on October-14-2021

Code answers related to "what does .upper do in python"

Python Answers by Framework

Browse Popular Code Answers by Language