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 4bc31b9 commit 92324b6Copy full SHA for 92324b6
scripts/01_comments
scripts/01_comments.py
@@ -0,0 +1,22 @@
1
+#===================================================================
2
+# Comments
3
+# ---------------------------------------
4
+# Comments are ignored by Python when the code runs.
5
+# They’re just for humans — to explain, organize, and document code.
6
7
+
8
+# This is a single-line comment
9
10
+# Multi-line Comment Example:
11
+# 1. Create User Name
12
+# 2. Print Message to User
13
+# 3. Store Data
14
15
16
+# Where We Place Comments?
17
18
19
+# Store the final exam score
20
+x = 10
21
22
+x = 9 # Final exam score
0 commit comments