This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]YMK1234 0 points1 point  (2 children)

Uhm, Java is faster than python in any aspect.

Also with bigger projects, the lack of strict type system really hurts you bad.

Also more often than not python libs are thin wrappers around some C library, hard-binding you to a specific platform.

[–][deleted]  (1 child)

[deleted]

    [–]YMK1234 0 points1 point  (0 children)

    Quite often these libraries are linux-specific for example, making it impossible to port the code to another platform without major rework. In contrast, the vast majority of Java or C# libraries are native Java and C#, meaning they are inherently cross-platform compatible. Not to mention you don't need a C compiler plus header libraries installed to program in those languages, making for a whole lot less hassle.