DEV Community

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

Collapse
 
ahferroin7 profile image
Austin S. Hemmelgarn

I use Python pretty regularly for automating systems administration type stuff, both by writing my own scripts (I much prefer Python for text processing over sed or awk, it's much more readable), or by utilizing (popular) tools written in Python like Ansible.

Python is actually really good for this type of thing because it's both much safer (in terms of stuff like error handling) and more powerful than shell script, but still very easy to learn and use.