Google has a big hardon for it, so it's doubtful.
Except google uses their own version of python , without giving back to the community and they crosscompile it ti 'C' to jank it through an ANSI c compiler that spits out machine language....
In my opinion Python is a big steaming turd of a language, Before you start flaming let me explain why :
I look at it from the perspective as writing embedded code on microcontroller , or things like test and measurement automation.
1) They broke it between 2.xx and 3.0 to the point you had to rewrite a bunch of code to keep going forward. This is unacceptable for any language ..
2) Any modern language that still needs to rely on ; to find the end of a line is not worth it. ; are a relic from the PDP-era. there is a <CR> char there placed by the editor. use that one.
if a line needs continuation then use a deliberate charactor to tell the compiler the line goes on. Not the other way around. lines are short anyway
3) what is this boneheaded idea of using TAB and indentation to define subroutines. One misplaced space or tab character and the code does not execute as you think it does. Email a chunk of code or send it through another editor and it becomes a mess.
4) no enumerated lists ( constants )
5) if something doesn't exist the runtime creates an empty object instead of throwing a fit. This makes debugging code very hard. One typo and you are screwed.
I really tried using python but i gave up after a few months. Too many problems. Like not having true constants. you need to kludge around with a lot of typing to make a class and then create hidden functions to return ... too much work too cumbersome.
Now, python does have its place and that is for any kind of web programming. But for usage as an ambedded programming language ? or general purpose language ? No . Thanks. Too awkward , too much trouble. And who knows what will be broken in Python 4.0 ....