lots_of_functions.py


Sign up Free. Don't forget to check out our challenges, lessons, solve and learn series and more ...


Code Snippet

#Press F5 to run this program
#in the Shell type 'login()' - this will CALL the function below and run it!


def login():
    print("Login:")
    welcome()
                
def welcome():
    print("So...you're in. Welcome!")
    main()


def main():
    login()
          
                
                
                    

Try it yourself