rate = 10 def quote(): try: print(rate) except UnboundLocalError: print("unbound") rate = 5 print(rate) quote() print(rate)