If, on the other hand, you take Python's core strengths like the simplicity, to my mind Julia does not necessarily match these. I have seen people being able to extend Python programs without any Python training or tutorials or even programming affinity just by imitating the code next to where they want the program to do something. I have a hard time imagining that that would be quite as easy with Julia.
Similarly, if you take the ideas from the Zen of Python, you might find that Python (code) fares better on them than Julia.
Now, any of the features that contribute to Julia being more complex in the above sense has a good reason for existing, but there is is value in Python's simplicity that can be easy to overlook.
Of course, one might wonder whether Python started to depart from that - with := and structural pattern matching being examples of things that are valuable features but at the same time adding quite a bit of complexity while being much more controversial than, say, list comprehensions.
Note that this is not about being able to write programs that are easy to understand but about any given code being easy to understand (at the "what does this line of code do" level).
It may also be instructive to compare the (English) Wikipedia entries of both, I think they are to some extend reflections of the different philosophies behind the two languages.
That said there are a lot of places where Julia is a set of carefully considered tradeoffs. For example, eval in Julia always runs in the global scope. This allows the language to run much faster, but isn't always what users expect. Similarly, Jit vs interpreter is a tradeoff. Jit is faster, but has startup lag which means it will often be slower for scripts that take less than a few seconds.
> Julia still has a long way to go in regards to libraries
For me, the core practical benefit of python is the ecosystem. I also like the language and there are definitely some intellectually satisfying "pythonic" things you can do. But for work, my core concern is productivity, and python has mature libraries across everything I do (ML / data science) that let me spend my time using it as a tool and not sorting out quirks of the v0.1 libraries.
That's really it. The no fred lunch with Julia is that it's nowhere near the maturity (including documentation) of libraries that python has.