str.upper()
NA
#!/usr/bin/python3 str = "this is string example....wow!!!" print ("str.upper : ",str.upper())
str.upper : THIS IS STRING EXAMPLE....WOW!!!