# zip
dxs, dys = [0, 0, 1, -1], [1, -1, 0, 0]
for dx, dy in zip(dxs, dys):
print(dx, dy)
>> output
0 1
0 -1
1, 0
-1, 0
# map
a, b = map(int, input().split())
# 풀어쓰면
x = input().split() # input().split()의 결과는 문자열 리스트
m = map(int, x) # 리스트의 요소를 int로 변환, 결과는 맵 객체
a, b = m # 맵 객체는 변수 여러 개에 저장할 수 있음
# 하나의 list 에 바로 할당
a = list(map(int, input().split()))
# input
array = []
for i in range(n):
array.append(list(map(int, input().split())))
n = 4
arr_2d = [
list(map(int, input().split()))
for _ in range(n)
]
print(arr_2d)