I want to "translate" integer values in the range from 0 to 26 to characters 'A' to 'Z', but that seems harder in python than in C++, where it is allowed to add integer values to char variables.
The other attempt to generate an array with consecutive characters from a range is apparently also not possible;
I know that I could create an "ABC...XYZ" string for that purpose, but I don't want to do that.
Question.
how can character-ranges à la
ABC = [c for c in range('A','Z')]+['Z'] be generated, resp. emulated in python?