Answers for "When writing a Flask application the main function is… is defined in the __init__.py file by the developer so that the entry point into our application is well defined."

13

how to define main in python

# Defining main function 
def main(): 
    print("hello World") 
  
  
# Using the special variable  
# __name__ 
if __name__=="__main__": 
    main()
Posted by: Guest on May-03-2020

Code answers related to "When writing a Flask application the main function is… is defined in the __init__.py file by the developer so that the entry point into our application is well defined."

Python Answers by Framework

Browse Popular Code Answers by Language