Python - Classes and Object Lifecycle
Identify the problem in this code:
class Tree:
height = 10
t = Tree()
print(t.height)
Tree.height = 15
print(t.height)