About 107,000 results
Open links in new tab
  1. Python vs. Java performance (runtime speed) - Stack Overflow

    Jun 15, 2010 · Possible Duplicate: is python slower than java/C#? Ignoring all the characteristics of each languages and focusing SOLELY on speed, which language is better performance …

  2. Is Python slower than Java/C#? - Stack Overflow

    It might be slower than Java, depending on the Java JIT compiler. JYthon is interpreted in the JVM and has the same performance profile as Java. IronPython relies on the same .NET …

  3. about Speed: Python VS Java - Stack Overflow

    Dec 30, 2010 · Speed only matters for the specific application you have in mind. Please post the code you want to compare in Python and in Java. Then, as part of posting the code you want …

  4. Performance differences between Python and C - Stack Overflow

    Apr 9, 2013 · Learning Python can take some time, but there are Python modules that can greatly speed development time. For example, the csv module in Python makes reading and writing …

  5. Python vs Javascript execution time - Stack Overflow

    Mar 30, 2022 · I tried solving Maximum Subarray using both Javascript(Node.js) and Python, with brute force algorithm. Here's my code: Using python: from datetime import datetime from …

  6. performance - How fast is Python? - Stack Overflow

    Nov 6, 2009 · In terms of raw performance, Python is definitely slower than Java, C# and C/C++. However, there are other things that matter for the user/observer such as total memory usage, …

  7. Java's Spring Boot vs Python's FastAPI: Threads

    Jun 14, 2024 · In Python , you can have many logical threads that are waiting. In Java, you can have a thread pool with many real threads that are waiting. To me, the only difference seems …

  8. Can Go really be that much faster than Python? - Stack Overflow

    Sep 25, 2012 · Java will fair much better in a trivial benchmark like this and will likely be fairly close to Go; the JIT and static-typing of the counter variable can ensure this (it uses a special …

  9. Is Python faster and lighter than C++? - Stack Overflow

    When it comes to source size though, Python wins flat out. My experiences with Python show the same definite trend that Python is on the order of between 10 and 100 times slower than C++ …

  10. Performance Comparison of Shell Scripts vs high level interpreted …

    Dec 17, 2014 · In particular - for right now, I need to a comparison of hitting an Oracle DB from a shell script vs, lets say C# (again, any GPPL thats interpreted would be fine, even the higher …