mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-01-30 07:08:01 -08:00
Compare commits
6 Commits
fb34f1574d
...
5b30a09ee6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5b30a09ee6 | ||
|
|
d63d75bb28 | ||
|
|
94087440e5 | ||
|
|
9617317345 | ||
|
|
087d5d45a6 | ||
|
|
96f9b643f4 |
@@ -185,7 +185,6 @@ width="" <!-- Describes the width of th
|
||||
<!-- Some other useful tags -->
|
||||
|
||||
<canvas></canvas> <!-- Allows to draw 2D shapes on the web page with the help of javascript -->
|
||||
<keygen> <!-- Represents a control for generating a public-private key pair -->
|
||||
<map></map> <!-- Specifies an image map -->
|
||||
|
||||
<!-- Collective Character Obejcts -->
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user