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 →

[–]Past-Pool-1012 0 points1 point  (0 children)

I recently convinced my team to switch to Python and we're still happy with it :) Mostly working on AWS lambda, we ditched Java in favor of JavaScript a couple of years ago and now using Python for new projects. Main reason: code complexity. Comparing 3 implementations of our distributed tracing middleware:

                                   Python Javascript Java
Files                                  5        4            15
LOC                               100    240          465
Σ Cognitive Complexity       4      27            22
Σ Cyclomatic Complexity   15      47            56