Answers for "what is a main function"

9

main in python

if __name__ == "__main__":
Posted by: Guest on June-16-2020
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

Python Answers by Framework

Browse Popular Code Answers by Language