1['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']
1>>> import string
2>>> string.ascii_lowercase
3'abcdefghijklmnopqrstuvwxyz'
1#Python: premade alphabet string
2
3import string
4string.ascii_lowercase
5 #output: 'abcdefghijklmnopqrstuvwxyz'
6string.ascii_uppercase
7 #output: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
1for i in range(ord('a'), ord('z') + 1):
2 print(chr(i))
3 # prints all letters in english the alphabet
1 ['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']
2