mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-01-27 21:58:02 -08:00
Merge 9617317345 into 10872e02d1
This commit is contained in:
@@ -125,6 +125,27 @@
|
|||||||
| \|= | bitwise or and store|
|
| \|= | bitwise or and store|
|
||||||
| , | separator as in ( y=x,z=++x )|
|
| , | 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
|
### Basic Data Structures
|
||||||
|
|
||||||
### List
|
### List
|
||||||
|
|||||||
Reference in New Issue
Block a user