added: Python Comments

This commit is contained in:
Haaris
2023-01-14 21:42:41 +05:30
committed by GitHub
parent 8ec2267167
commit 96f9b643f4

View File

@@ -125,6 +125,23 @@
| \|= | bitwise or and store|
| , | separator as in ( y=x,z=++x )|
<br>
## Comments
- Comments are very helpful to explain a Python code.
- They are used to make the code more readable.
- They never get executed.
- Comments start with # in Python
#This is a comment ----> This is a comment
print("Welcome!")
<br>
### Basic Data Structures
### List