python-tutorials/tests/VariableName/ImportVarName.py

14 lines
346 B
Python
Raw Normal View History

2021-03-18 23:42:29 -04:00
# -*- coding: utf-8 -*-
# Python __name__ module ImportVarName
# Author - HoneyMoose(huyuchengus@gmail.com)
# Link Article - https://www.ossez.com/t/python-name/13393
print("ImportVarName __name__ = %s" % __name__)
if __name__ == "__main__":
print("ImportVarName is being run directly")
else:
print("ImportVarName is being imported")