Python String upper() Method
Python String upper() method is used to convert all characters in a string into uppercase characters and returns it. This method doesn’t modify the original string. Instead, it returns a new string. Syntax string.upper() Parameters This method doesn’t take any parameters. Return Value It returns a new string where all the characters are in uppercase. If … Read more