DEV Community

Discussion on: Do You Use Python For Anything Besides Data Science?

Collapse
 
habereder profile image
Raphael Habereder • Edited

I do love me some Python for automation and admin stuff. For example to format json, because the admin hates me and I don't have jq on hand, like this:
echo '{"one":1,"two":2}' | python -m json.tool

Though, I've been having a really good time with go lately, which will probably replace Python for me in the long run.