What does this program print?
Python
rate = 10
def quote():
try:
print(rate)
except UnboundLocalError:
print("unbound")
rate = 5
print(rate)
quote()
print(rate)
rate = 10
def quote():
try:
print(rate)
except UnboundLocalError:
print("unbound")
rate = 5
print(rate)
quote()
print(rate)