Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Pierian-Data
GitHub Repository: Pierian-Data/Complete-Python-3-Bootcamp
Path: blob/master/06-Modules and Packages/01-Name_and_Main/two.py
1598 views
1
import one
2
3
print("top-level in two.py")
4
5
one.func()
6
7
if __name__ == "__main__":
8
print("two.py is being run directly")
9
else:
10
print("two.py is being imported into another module")
11
12