I think everyone here got all the important ones, except for sys
. If you look at actual Python code, sys
is probably one of the most commonly used modules (usually because of sys.version
).
Also, it's not really a module, but I would mention __future__
.
And nobody should use Python without doing import this
.