module_using_name.py 133 B

12345
  1. if __name__ == '__main__':
  2. print 'This program is being run by itself'
  3. else:
  4. print 'I am being imported from another module'