You can download this code by clicking the button below.
This code is now available for download.
Convert all lowercase letters in the input string to uppercase.
Technology Stack : str.upper()
Code Type : String Handling Function
Code Difficulty : Intermediate
def ascii_lowercase_to_uppercase(text):
return text.upper()