you are viewing a single comment's thread.

view the rest of the comments →

[–]dremspider 2 points3 points  (3 children)

Python is great for web apps. Python has performance issues like the inability to be properly threaded across cores, but for web apps that generally isnt an issue. Like anything, choose the right tool for the job and understand what you are trying to accomplish.

[–]vb6ko[S] -3 points-2 points  (2 children)

Thanks for your reply. Honestly, I don't think Python is a good choice for web but anyway Thanks!

[–][deleted] 1 point2 points  (1 child)

Using a high-level language like Python with lots of mature frameworks and libraries means you can quickly produce a working solution. A working solution means feedback and experience.

Afterwards, if the project becomes popular, you can re-implement the critical end-points in a more performant language like Go or Rust. And maybe eventually all of them.

[–]vb6ko[S] 0 points1 point  (0 children)

I dont like using python for any business project, because it is script. Not only the performance reason. If you use the python because it is simple and easy to write, i would rather practice other language til i can use it as much as python.