why does this print "So it must be: test test" and not "So it must be: hello it's me"
class bob():
subjectTemp='test'
levelTemp='test'
def setSubject(function_subject):
bob.subjectTemp=function_subject
print(bob.subjectTemp)
def setLevel(function_level):
bob.levelTemp=function_level
print(bob.levelTemp)
def join(subject=subjectTemp, level=levelTemp):
print("So it must be:", subject, level)
bob.setSubject("hello")
bob.setLevel("it's me")
bob.join()