I feel like you're discounting the importance of syntaxes. Python is as popular as it is because the syntaxes is so simple. Lisp isn't as popular because prefix notation doesn't make intuitive sense to beginners. I would argue that syntax is probably the most important feature of a language
The problem I find with parenthesized languages is the amount of visual noise coming from the parentheses. If you're learning how to write your first interpreter or compiler I kind of assume you already know how to program and understanding S-expressions is not too difficult. Personally, I would have liked to learn and implement closures, continuations, macros, garbage collection, type systems, etc. earlier, and then going deeper into syntax.
Python languished in obscurity for about a quarter century before taking off in popularity. The tide didn't turn because of changes in syntax.
Python's syntax inspires imitations that you will never hear about in spite of their syntax.
C doesn't have beginner-friendly syntax, yet it succeeded over languages like Pascal and Modula. C++ enjoys great popularity in spite of a mind-numbingly large grammar full of arcane syntax, which grows worse as time passes. There is a lot interest in Rust, which has tons of bizarre syntax to learn.
Poorly-considered, simplistic hypotheses connecting syntax with popularity simply don't hold up to even a modest amount of scrutiny.
I contend that your hypothesis is equally simplistic and poorly considered. How would Python get an active community and ecosystem in the first place, if it languished for a quarter of a century?
> C++ enjoys great popularity in spite of a mind-numbingly large grammar full of arcane syntax, which grows worse as time passes. There is a lot interest in Rust, which has tons of bizarre syntax to learn.
C++ becomes less popular as its syntax becomes more arcane. Rust is a recent language and its long term survival remains to be seen. Languages are like memes: they come and they go. BASIC used to be the beginner language, now it's Python. Lua is popular due to its syntax and ease of embedding. We'll see what simplistic whitespace syntaxes come out within the next 25 years. I predict many language which exist today will fall by the wayside while newer ones replace them
> How would Python get an active community and ecosystem in the first place, if it languished for a quarter of a century?
Development on Python started in 1989 and it was evidently released in 1991. The popularity didn't take off until well past Y2K. During all those intervening years, it had a small number of users, characteristic of an unpopular language.
If MicroPython is Python, i dissagree. It spelled syntax error where there was any and indentation makes it very hard to distinguish code blocks especially by beginners and especially on windows where the font is not proportional in the interpreter.