We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c04786 commit e6c4c57Copy full SHA for e6c4c57
4장_구조와_모듈/hello.py
@@ -0,0 +1,10 @@
1
+hello = "hello"
2
+
3
+def world():
4
+ return "world"
5
6
+if __name__ == '__main__':
7
+ print(f"{__name__} 직접 실행됨.")
8
+else:
9
+ print(f"{__name__} 임포트 됨.")
10
0 commit comments