Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. import json
  2.  
  3. d = { 1: False, 2: False }
  4.  
  5. print(json.dumps(d))
  6.  
  7. # $ python test.py
  8. # {"1": false, "2": false}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement