python get all letters code example

Example 1: abc list python

['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']

Example 2: python list with all letters

alphabet_list = list(string.ascii_lowercase)

Example 3: python create a list of alphabets

>>> import string
>>> string.ascii_lowercase
'abcdefghijklmnopqrstuvwxyz'

Example 4: python get all characters

import string

# all the lowercase and uppercase letters
print(string.ascii_letters)
# every printable key on your keyboard
print(string.printable)
# every digit
print(string.digits)