| Table of Contents |
|---|
Basic Data Types
...
Contant values by the types
| Value | Python Expression |
|---|---|
| Hexa decimal a1 | 0xa1 |
| 3.2e-12 | |
|
|
...
Diagram for the list indices:
| 'foo' | 'bar' | 'baz' | 'qux' | 'quux' | 'corge' |
|---|---|---|---|---|---|
| 0 | 1 | 2 | 3 | 4 | 5 |
| -6 | -5 | -4 | -3 | -2 | -1 |
Result
| Code Block |
|---|
False qux ['bar', 'baz'] foo ['quux', 'baz', 'foo'] |
...