I had a hackday at work where I experimented a bit with python (I haven't worked in it professionally before)... I translated a package I maintain into it and I really loathe a lot of the language's design decisions. It's still fun to experiment though so I had fun. On the other hand I'm planning to fly into the US next week and I've been semi-nervous as a skirt wearing non-conforming man... but now I'm legitimately uncertain if shit like the TSA, CBP and air travel will work with the "Hey, anyone want to resign" memo. If it wasn't for an important family event I'd absolutely cancel my shit.
FYI I don't think Python is really suitable for use with a production environment. After you want to start installing other people's modules, you'll encounter nightmares without any good solutions, and someone will eventually be extremely unhappy that you decided to use Python (probably within 5-10 years, if not much sooner): https://chriswarrick.com/blog/2023/01/15/how-to-improve-python-packaging/
In general, Python seems to be much too closely coupled to the Shell Command Language (which you should also try to use as little as possible): it seems like a lot depends on the environment, so trying to use Python after interacting with a PATH variable or changing the working directory might unexpectedly produce different results. A clear example of this is the idea of "virtual environments", as using one essentially requires that using Python is managed using the Shell Command Language (see what I expect is the source code for the "activate" and "deactivate" utilities also). "Virtual environments" seem to be extensively used by at least Pipenv. Also, the people managing Python seem much more concerned about maintaining interoperability with C than with making packaging less terrible (this is understandable, but other languages also interact with C while having better packaging systems).
I'll say that using Python is probably better than using C or C++ (especially since it seems that there are many more published best practices regarding package management for Python than for C), but it's probably better to choose a different memory-safe programming language if you have a choice at all.