Write a python function that takes in a string and returns it in uppercase
Topic: Write a python function that takes in a string and returns it in uppercase
Solution
def to_upper(s): return s.upper()
List all Python Programs
Solution
def to_upper(s): return s.upper()