Unit Tests
def convert_upper(my_text):
return my_text.upper()
def convert_lower(my_text):
return my_text.lower()
def convert_capital(my_text):
return my_text.capitalize()print(convert_lower("John ORaw"))
print(convert_upper("John ORaw"))
print(convert_capital("dUBLIN"))
Last updated