Python - Object-Oriented Programming Foundations
Find the error in this class definition:
class Person:
def __init__(self, name):
name = name
def greet(self):
print('Hello, ' + self.name)