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