Return a new string in which all case-based characters are in upper case.
This function does not generate a change.
str.upper()
None
Returns a new string with all characters in upper case.
Example using upper():
'Hello World!!'.upper();
Return value in JSON format
"HELLO WORLD!!"