Hacker News new | ask | show | jobs
by fulafel 219 days ago
I still suspect JS. It's much harder to shoot yourself in the foot with Python. Even if you use JSON:

  >>> json.loads('{"nr": 348555896224571969}')
  {'nr': 348555896224571969}
  >>> type(_['nr'])
  <class 'int'>
1 comments

TIL that in the python REPL `_` automatically has the previous expr's result. That's cool