python "string" module?
deprecated, module, python, string
Solution
The `string` module contains a set of useful constants, such as `ascii_letters` and `digits`, and the module is often still imported for that reason.
Problem
So I'm reading this old module from I think around 2002 and it has this line "import string". Did Python require you to import a string module explicitly before to be able to use string type variables or something? I don't see it used like this in the code: ``` string.something ```