This commit is contained in:
Haaris
2024-06-12 18:34:24 +00:00
committed by GitHub

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