1test = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
2test.isalpha()
3# This will return True if all chars in string are from a-z or A-Z and Flase in all other cases
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