>>108983718
It basically is, but Python has helpful, consistent, easy-to-remember syntax for all the most common cases. It's very low-friction to write.
Lisp is fun to use but is not easier to write than Python and is often not more productive either, even if you aren't relying on libraries from Python's popular ecosystem. When sketching algorithms, most people want to be able write:
c = a[0] + b[4]
print(c)
Not:
(let ([c (+ (first a) (list-ref b 4))])
(displayln c))
That's a trivial example but that pattern scales to an extent also. There are similar patterns with loops and conditionals also, that are just easier to do in Python (or R).