fork download
  1. # your code goes here
  2.  
  3. def fun1 () :
  4. print("I am fun1")
  5.  
  6. """
  7. fun1()
  8. print(__name__)
  9. """
  10.  
  11. if __name__ == "__main__" :
  12. fun1()
Success #stdin #stdout 0.03s 9532KB
stdin
Standard input is empty
stdout
I am fun1