# File: global01.py # # if a variable is not defined in a function # then it is global. b = 101 def test() : print("b = ", b) return test() ''' Output from the program: b = 101 '''