Python overtakes JavaScript as most questioned language on StackOverflow
globalapptesting.com
Python overtakes JavaScript as most questioned language on StackOverflow
1–10 of 166 posts
Re: Python overtakes JavaScript as most questioned language on StackOverflow
#2Re: Python overtakes JavaScript as most questioned language on StackOverflow
#3Re: Python overtakes JavaScript as most questioned language on StackOverflow
#4Is it happening because of Python getting more popular or getting more complicated to use?
Re: Python overtakes JavaScript as most questioned language on StackOverflow
#5Is it happening because of Python getting more popular or getting more complicated to use?
Re: Python overtakes JavaScript as most questioned language on StackOverflow
#6Is it happening because of Python getting more popular or getting more complicated to use?
However, Python does provide more tools to do more complicated things (async, type hints, etc), but that's not what most people use. They actually don't even know about it, and don't have to care. So it's not the questions you see on SO.
Python has gotten much, MUCH more popular, and we are currently facing a wave of new beginners. Particularly from schools (it's now the default teaching language in most countries) and from loads of workers that can benefit from manipulating data with programming and are attracted to Python for this.
It is precisely because Python is still easy that it's that popular: it doesn't benefit from massive existing code bases like Java or accidental monopoly like JS. We just have a lot of people creating a lot of libs for pretty much everything, because everybody can do it.
I also think the aesthetic of the language plays a big role. Python has been designed to allow you to dev with it with just MS notepad if you have to. It means you don't need to learn about a gigantic and complicated ecosystem to be productive with it (although it does exist): it's a huge help for all those people that are just getting started or not a programmer at heart. It's also harder to create very ugly code because you don't know what you are doing, and if you do, the result will not be as bad as with other languages because Guido made sure of it.
It's also why you don't get multi-line lambdas. Everything is a compromise.
Re: Python overtakes JavaScript as most questioned language on StackOverflow
#7Seems like the most difficult programming is no longer cache invalidation and naming things. Its now about strings, and to duplicate arrays ... The stats are skewed because hordes of beginners. Mainly driven by what schools teaches and what languages has the most hype. That said Python is huge . Damn you significant white space.
Re: Python overtakes JavaScript as most questioned language on StackOverflow
#8---
Also I bet that if each language's words were compared to the overall vocabulary for SO, or at least to the cumulative one for these languages, the differences would stand out more.
And of course, the usefulness of a word cloud visualization is highly dubious to me.
Re: Python overtakes JavaScript as most questioned language on StackOverflow
#9Seems like the most difficult programming is no longer cache invalidation and naming things. Its now about strings, and to duplicate arrays ... The stats are skewed because hordes of beginners. Mainly driven by what schools teaches and what languages has the most hype. That said Python is huge . Damn you significant white space.
I often say that Python is the best at nothing, but pretty good at most things. And hence it became huge by the sheer appeal of being versatile. Life is short and most people needing to program are not programmers. Also many programmers didn't start as such, and were simply looking for an easy way to solve a task.
Outside of lisps, I find Python to be one of the simplest syntaxes, so the only effort is the logic to solve the problem.
Re: Python overtakes JavaScript as most questioned language on StackOverflow
#10Is it happening because of Python getting more popular or getting more complicated to use?