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 f6d27f7 commit 1110bbdCopy full SHA for 1110bbd
les1_get_strated.py
@@ -0,0 +1,13 @@
1
+#https://newdigitals.org/2024/01/23/basic-python-programming/#getting-started
2
+import os
3
+os.chdir('MYPATH') # Set working directory YOURPATH
4
+os. getcwd()
5
+
6
+#check the Python version
7
+!python --version
8
+#Python 3.11.5
9
+#run the print script
10
+# Script Begins
11
+print("I love Python!")
12
+# Scripts Ends
13
+#Output: I love Python!
0 commit comments