

# https://www.globalsino.com/ICs/
# Global Access to the local variable with "global"

class Test:
    def theTest(xxxx):
        global for_global_variable
        for_global_variable = 'Interesting!'

class Yes:
    def yep(self):
        return for_global_variable + " "+ '!!!'

Test().theTest()
print(for_global_variable)
print(Yes().yep())

