Python / Odoo Developer

Welcome!

This community is for professionals and enthusiasts of our products and services. Share and discuss the best content and new marketing ideas, build your professional profile and become a better marketer together.

0

Python scopes

Avatar
Administrator

Scope __main__

link 

#!/usr/bin/python
# Filename: using_name.py
if __name__ == '__main__':
    print 'This program is being run by itself'
else:
    print 'I am being imported from another module'


$ python using_name.py
This program is being run by itself
$ python
>>> import using_name
I am being imported from another module


Avatar
Abbandona