import string #1 string.ascii_lowercase #2
How this works - Line by Line
import string #1
Imports the string module
string.ascii_lowercase #2
This returns the alphabet range in lower case.
Line by line explanations of how things work in Python
import string #1 string.ascii_lowercase #2
import string #1
string.ascii_lowercase #2
This returns the alphabet range in lower case.