-
[Python] 한줄 반복문으로 코드를 깔끔하게 만들어보자 list comprehensionPython 2021. 11. 23. 18:10
# SUITE와 RANKS 라는 리스트를 만들어준다 SUITE = 'H D S C'.split() RANKS = '2 3 4 5 6 7 8 9 10 J Q K A'.split() # 경우 1 mycards = [(s,r) for s in SUITE for r in RANKS] ------------------------------------- # 경우 2 mycards = [] for r in RANKS: for s in SUITE: mycards.append((s,r))
'Python' 카테고리의 다른 글
[Python] iterable과 iterator에 대해서 (0) 2021.11.23 [Python] append 와 extend의 차이점 (0) 2021.11.23 [Python] class에 기능을 더해보자 (0) 2021.11.23 [Python] class를 써보자 (0) 2021.11.23 [Python] Scope를 초월해서 변수에 손을 대보자 global (0) 2021.11.23