Python - Encapsulation and Data Protection
Find the error in this code that tries to create a public attribute
age:class Person:
def __init__(self, age):
age = age
p = Person(30)
print(p.age)