DEV Community

Discussion on: What does this mean in Python: *args, **kwargs?

Collapse
 
rudolfolah profile image
Rudolf Olah

It's funny, but from much of the Ruby code I've seen in production code bases, most of them do not take advantage of keyword arguments. They still use the options hash style. With Python it seems much more idiomatic to use keyword arguments.

Collapse
 
mburszley profile image
Maximilian Burszley

I mean, they're basically the same thing. Just two different styles.