Answers for "main uses of python"

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