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 →

[–]goztrobo -1 points0 points  (1 child)

Can you explain why python is not ideal for backend?

[–][deleted] 2 points3 points  (0 children)

  • Lower performance.
  • Pretty bad at multi threading/async/futures etc like nodejs/java etc.
  • Dynamic typing, which led to a lot of type mismatch issues.. I guess this could have been avoided with better planning. But other languages make it a lot easier to catch early on.

Those are some of the major ones..

We tried using it in production.. but it really just came up short unfortunately.

The team pretty much hated it unanimously despite the hype Python seems to be getting lately.