ASCII to Uppercase Conversion

  • Share this:

Code introduction


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()                
              
Tags: