ascii_lowercase

string.ascii_lowercase

Returns the concatenation of all the alphabetical letters in lowercase. (string).

REMARKS
* string module
* This value is not locale-dependent and will not change.
* You can use the string.ascii_letters constant to
* You can use the string.ascii_uppercase constant to

import string 

print(string.ascii_lowercase) 'abcdefghijklmnopqrstuvwxyz

© 2026 Better Solutions Limited. All Rights Reserved. © 2026 Better Solutions Limited Top