6 ms·
I would hazard a guess that it is because the statement allows for easily adding a `print varname` in your code while debugging.
by trwired 13y ago
I would hazard a guess that it is because the statement allows for easily adding a `print varname` in your code while debugging.
- randlet 13y agoIt's two extra chars to write print(varname). One if your editor auto-inserts matching parens!
- dragonwriter 13y agoprint(varname) is one extra keystroke -- and a whole more convenient than a statement when you want to do it in a lambda for debugging.