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 f33953a commit 2b69219Copy full SHA for 2b69219
codes/ch1/main.py
@@ -0,0 +1,10 @@
1
+#!/usr/bin/python3
2
+
3
+def main():
4
+ print("Hello! Python")
5
+ welcome()
6
7
+def welcome():
8
+ print("Welcome to the world of Python")
9
10
+if __name__ == "__main__": main()
0 commit comments