Python - Class Methods and Static Methods
Identify the error in this code:
class Person:
name = "Unknown"
@classmethod
def set_name(cls, name):
self.name = name
Person.set_name("Alice")
print(Person.name)