+ 11
Interval symbols
How get interval from 'A' to 'Z'?
3 ответов
+ 10
Thank you very much!
We can like our question and answers:)
+ 4
without importing module:
A = ord('A')
print( [ chr(A+i) for i in range(26) ] )
+ 1
from string import ascii_letters
letters = ascii_letters.upper()
print(letters)