DEV Community

[Comment from a deleted post]
Collapse
 
hentaichan profile image
ヘンタイちゃん

You can use the built-in string module to write

>>> import string
>>> digits = [_ for _ in string.digits]
>>> digits
['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
>>> letters = [_ for _ in string.ascii_lowercase]
>>> letters
['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
Enter fullscreen mode Exit fullscreen mode

so that you don't have to type out these sort of lists by hand ;)

Collapse
 
envoy_ profile image
Vedant Chainani

thankyou for the suggestion I will implement it in the script.