Skip to content

Commit

Permalink
Update python-2.md
Browse files Browse the repository at this point in the history
  • Loading branch information
denten committed Jun 7, 2016
1 parent 85ae713 commit 4c0b7bb
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions tutorials/python/python-2.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
[https://docs.python.org/2/library/functions.html][1]

[1]: https://docs.python.org/2/library/functions.html

## Conditionals and Recursion
## Comparisons

https://docs.python.org/3/library/stdtypes.html#comparisons

| Operation | Meaning |
|-----------|-------------------------|
| `<` | strictly less than |
| `<=` | less than or equal |
| `>` | strictly greater than |
| `>=` | greater than or equal |
| `==` | equal |
| `!=` | not equal |
| `is` | object identity |
| `is not` | negated object identity |

```
# Booleans
Expand Down

0 comments on commit 4c0b7bb

Please sign in to comment.