Get stuck at one point.
I have one list containing n elements so according to length, I have to generate list.
For example i have an list contains 25 element then new list will be [A,B,C,...,Y] and for example list contains 26 elements then [A,B,C,...,Z].
Up to z i can easily get list but now i am getting more than 26 elements. for example length is 27 then i want these type of list [A,B,C,...,Y,Z,AA].
so, how i am able to get these type of list any suggestion ???