How to construct a string from the first N letter of the english alphabet letters in Python

2 Answers

0 votes
N = 7

s = ''.join(['% c' % ch for ch in range(97, 97 + N)]) 
      
print(s)
   
   
   
'''
run:
   
abcdefg
   
'''

 



answered Jan 14, 2020 by avibootz
0 votes
N = 9

s = ''.join(chr(ord('a') + i) for i in range(N)) 
      
print(s)
   
   
   
'''
run:
   
abcdefghi
   
'''

 



answered Jan 14, 2020 by avibootz

Related questions

...