|
|
|
|
|
by sametmax
2983 days ago
|
|
I have coded with both, and practically, yes, they are. The only place where JS would beat Python would be a big loop with number crunching, which you would do with numpy anyway. Or pypy, which is 50 times faster than V8. A desktop app would not see any difference. A sysadmin script neihter. Data analystics is made using numpy/scipy/pandas. Web sites bottleneck are incredibly rarely the server side scripting language, and when it is, you go rust/go. But for our current debate, electron VS PyQT, well yes, the C++ does the heavy lifting and you get to use Python only for the stuff it is good at. Win-win. The problem with using PyQT is making an exe or making fancy graphics is harder than in electron. Everything else, and I do mean everything else, is easier and more performant with PyQT. |
|
Ehhh V8 is pretty competitive with C for number crunching. Where are you getting that 50 times figure from?