I feel that the MVC pattern as a framework for dynamic, data driving web applications does seems to require less verbosity and hence less code with dynamic languages like Python and Ruby, which is a good thing.
Dynamic languages make it easy to avoid the dependency between the M, V and C which is one of the purposes of the pattern. For example in Python you can just pass your model objects to the view without the view requiring a dependency on the model type, it just cares that any type with the same attributes is passed in. Once you start using a templating language in the views, like in Django, it doesn't even cause script errors when an attribute doesn't exist.
To avoid these dependency in a strongly typed language, you often start passing passing around dictionaries with literal strings as keys, meaning most of the benefits of strongly type languages are lost (ie. your compiler won't tell you named a key "person" and then attempt to find it with a key "persons", this will be discovered at run-time)
Also, given the MVC pattern lends itself to testing by allowing the M, V and C to be tested individually, there is less advantage using strongly typed compiled language as tests can be used to validate your application is working as it should be.