I really dislike dealing with large engineering systems in Python, but I fully agree when I just need to solve a self-contained problem and don't need to worry as much about it being maintainable or readable (or more accurately, don't need to worry about interacting with Python code that other people have written). I currently work a lot with both Python and C++, and I find myself occasionally trying to write C++ Pythonically and it's a huge headache (eg map/filter or list comprehensions are infinitely more readable than stuff like std::transform).