Fantastic use of docstrings following PEP8 convention Great variable and function naming Good comments The flowing code will auto-generate the lowercase alphabet without having to manually create a list: import string list(string.ascii_lowercase)
Fantastic use of docstrings following PEP8 convention
Great variable and function naming
Good comments
The flowing code will auto-generate the lowercase alphabet without having to manually create a list:
import string
list(string.ascii_lowercase)