| ???? Python ??? | ??8?? ??? | |
|---|---|---|
| ???? | ????__name__ | ???? |
?????úY????????????????§á????????????????????????????????????????¨¢????????????????????????÷€???????????????????????ýq?????§³??????????????????????????????????ï…?????????????????????????????ï…?????????????????????????__name__??????¨À?
#!/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'
????????code/using_name.py??
$ python using_name.py
This program is being run by itself
$ python
>>> import using_name
I am being imported from another module
>>>
???Python??úY??????__name__?????????'__main__'????????????÷€??????????§µ?????????????????????????
| ???? | ????? | ???? |
|---|---|---|
| from..import??? | ??? | ?????????????? |