Do you mean something like the following?
for i in range(1,10) + [chr(x) for x in range(ord('a'), ord('z')+1)]:
print i
It prints 1 through 9 followed by a through z.
4
solved How to create a loop from 1-9 and from a-z?
Do you mean something like the following?
for i in range(1,10) + [chr(x) for x in range(ord('a'), ord('z')+1)]:
print i
It prints 1 through 9 followed by a through z.
4
solved How to create a loop from 1-9 and from a-z?