python print alphabet 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: alphabet string

abcdefghijklmnopqrstuvwxyz

Example 3: python alphabet

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

Example 4: alphabet 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 5: alphabet python

for i in range(ord('a'), ord('z') + 1):
  print(chr(i))
  # prints all letters in english the alphabet