Code:
print("Starting...")
def test():
notare = input()
bote()
def bote():
if notare == "a":
print("b")
else:
print("c")
test()
Error:
Traceback (most recent call last):
File "test.py", line 13, in <module>
test()
File "test.py", line 5, in test
bote()
File "test.py", line 8, in bote
if notare == "a":
NameError: name 'notare' is not defined