I'm new to Python and have limited understanding. When I execute my code it doesn't print anything out.
If anyone needs more details, please let me know:
def main():
login()
def login():
username="john"
password="apple"
print("Enter username:")
answer1=input()
print("Enter password:")
answer2=input()
if answer1==username and answer2==password:
print("Welcome - Access Granted")
menu()
def menu():
print("************MAIN MENU**************")