Is Python the Future of Programming?
m.slashdot.org
Is Python the Future of Programming?
1–10 of 77 posts
Re: Is Python the Future of Programming?
#2« I certainly didn't set out to create a language that was intended for mass consumption » [Guido van Rossum] explains.
As early as 1999 he was one of the authors of the "Computer Programming for Everybody" DARPA funding proposal, which was supposed to be based on Python.
Re: Is Python the Future of Programming?
#3At least not if I have anything to say about it! Lol
Re: Is Python the Future of Programming?
#4I think it's more likely to continue to be the future of glue languages.
Many problems can be solved in Python directly and when they can't you can often call out to something to do the heavy lifting.
For that I've found it absolutely excels.
Re: Is Python the Future of Programming?
#5For programs less than 500 lines, I have no issues with Python, but it feels to me like Python just isn’t suited for large-scale programming in the way C#, Java, Go, or Rust are.
Re: Is Python the Future of Programming?
#6Re: Is Python the Future of Programming?
#7I'd sooner Python be the future than JavaScript. I think it's more likely to continue to be the future of glue languages. Many problems can be solved in Python directly and when they can't you can often call out to something to do the heavy lifting. For that I've found it absolutely excels.
Re: Is Python the Future of Programming?
#8How are people writing large programs in Python? Isn’t the lack of compiler type checking making it difficult? And what about lack of access modifiers? People aren’t bothered by this? For programs less than 500 lines, I have no issues with Python, but it feels to me like Python just isn’t suited for large-scale programming in the way C#, Java, Go, or Rust are.
Re: Is Python the Future of Programming?
#9Re: Is Python the Future of Programming?
#10I'd sooner Python be the future than JavaScript. I think it's more likely to continue to be the future of glue languages. Many problems can be solved in Python directly and when they can't you can often call out to something to do the heavy lifting. For that I've found it absolutely excels.
I’m having trouble thinking of a dynamic language in Python’s class (Ruby, JS, even PHP) that fails your use case here.
If there's a bunch of languages that meet the baseline functionality, why not choose the most ergonomic of the bunch?