ascii_uppercase

string.ascii_uppercase

Returns the concatenation of all the alphabetical letters in uppercase. (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_lowercase constant to

import string 

print(string.ascii_uppercase) 'ABCDEFGHIJKLMNOPQRSTUVWXYZ

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