String constants
string.asci_lowercase
- The lowercase letters
'abcdefghijklmnopqrstuvwxyz'
. This value is not locale-dependent and will not change.
- The lowercase letters
import string
alphabet = string.ascii_lowercase
print (alphabet)
abcdefghijklmnopqrstuvwxyz