728x90
for문을 사용할 때 여러개의 리스트의 동일한 순서의 요소를 한 번에 이용할 일이 있다면 zip 사용하기
progresses = [93, 30, 55]
speeds = [1, 30, 5]
for p, s in zip(progresses, speeds):
print(p,s)
'''
93 1
30 30
55 5
'''
728x90
'Programming > Python' 카테고리의 다른 글
[Python] 딕셔너리 dictionary (0) | 2021.07.11 |
---|---|
[Python] 반올림, 올림, 내림, 버림: round, ceil, floor, trunc (0) | 2021.07.07 |
[Python] 빠르게 입력받기 (0) | 2021.07.01 |
[Python] 코드업 기초 100제 (0) | 2021.07.01 |
[Python] 큐(queue) 예제 (0) | 2021.06.02 |