I was referring to the fact that in Lisp everything is an expression, so technically Lisp doesn't stop you from writing something like this, whereas in Python you'd have to define distinct variables and nest them afterwards:
((if (< 1 0) + *) 42 100)
Now imagine if this were a bunch of deeply nested expressions...