Or looking at it this way: why do you suppose interpreted languages were designed to begin with? Interpreted languages like python were originally designed to avoid having to compile code - and maybe avoid buying a compiler license. The tradeoff is interpreted languages, overall, run more slowly than compiled languages.
15 years ago this was a drawback.
As computers have become much faster interpreted languages have gained favor. Incorporating specialty libraries, like bignum libraries, has also been accelerated as acceptance grows. It is sort of a positive feed back loop. More features == more users == demand for more new features.
Compiled languages take advantage of optimizations performed on the fly by compilers, that may not be easily realized in interpreted languages. Where runtime efficiencies are important - in a realtime applications for example-- compiled languages are close to a must use case.
Bottomline - for most stuff we find out there, coding is done in language Q because the programmer is fluent in language Q or because the place where the coder works insists on language Q. Generally, it does not matter much all that much which language, hardware notwithstanding. But you will always find people taking sides to plug their favorite (usually meaning the language that person is best with) in those 'who cares?' cases.
Pick one and use it.
Because of linux, GNU, and people like Guido van Rossum, many languages are now essentially free of cost and licensing requirements. If you have a Windows PC, try installing cygwin. (
www.cygwin.com) The last time I counted there were 20+ open source languages out there.
FWIW - van Rossum was obsessed with Monty Python's Flying Circus, a group of English comedians. Hence the name "python". Eric Idle has a python IDE named after him "idle", same reasoning.