模块的_name_

模块的__name__?$ python using_name.pyThis program is being run by itself$ python import using_na

模块的__name__

?

$ python using_name.pyThis program is being run by itself$ python>>> import using_nameI am being imported from another module>>> 
?