programming/python

a-z 출력

chanchand 2023. 8. 8. 09:42
반응형
for i in range(97, 123):
	print(chr(i), end = ' ')
# a b c d e f g h i j k l m n o p q r s t u v w x y z

 

for i in range(ord('a'), ord('z') + 1):
	print(chr(i), end = ' ')
# a b c d e f g h i j k l m n o p q r s t u v w x y z

 

import string
print(string.ascii_lowercase)
# abcdefghijklmnopqrstuvwxyz
print(' '.join(string.ascii_lowercase))
# a b c d e f g h i j k l m n o p q r s t u v w x y z
반응형

'programming > python' 카테고리의 다른 글

파이썬 여러 줄 입력받기  (0) 2023.10.08
requests.get  (0) 2023.09.22
얕은 복사(shallow copy) / 깊은 복사(deep copy)  (0) 2023.08.06
비트연산자  (0) 2023.08.05
우선순위 큐 - PriorityQueue, heapq  (0) 2023.08.03