This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": [ | |
{ | |
"id":1, "name": "Mike", "human": true | |
}, | |
{ | |
"id":2, "name": "Lucy", "human": false | |
}, | |
{ | |
"id":3, "name": "Arnold", "human": true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://thepythonguru.com/ | |
# start | |
$ python3 | |
# end | |
$ exit() | |
# run | |
$ python script.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# simple string | |
SET name "fido" | |
GET name // "fido" | |
# increment | |
SET connections 10 | |
INCR connections // 11 | |
DEL connections // deleted | |
INCR connections // 1 |
NewerOlder