Python - Methods and Behavior Definition
Identify the error in this code:
class Employee:
def __init__(self, name):
self.name = name
def introduce():
return f"Hi, I'm {self.name}!"
e = Employee('John')
print(e.introduce())