Compare commits

...

4 Commits

Author SHA1 Message Date
Haaris
f89f932980 Merge 9617317345 into 10872e02d1 2024-06-12 18:34:24 +00:00
Haaris
9617317345 added: Python Comments 2023-01-14 21:49:42 +05:30
Haaris
087d5d45a6 Update python.md 2023-01-14 21:48:23 +05:30
Haaris
96f9b643f4 added: Python Comments 2023-01-14 21:42:41 +05:30

View File

@@ -125,6 +125,27 @@
| \|= | 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.
```python
#This is a comment
print("Welcome!")
```
<br>
### Basic Data Structures
### List