Data Formatting
General Info
Useful Snippets

9.0.18 convert to upper case

Example:

def uppercase_conversion(text):
    "converts the string to upper case"
    text = str(text)
    text = text.upper()
    return(text)