Python - Constructors and Object Initialization
Given this class, how can you add a method that returns the instance's name in uppercase?
class Person:
def __init__(self, name):
self.name = name