한 번에 여러 변수 값을 입력 받고 싶을 때

Zoey·2021년 4월 20일
0
post-thumbnail

When you want to get multiple variables at once, check out this way!
Using input() and split(), you could make it easily. :)

A, B = input().split
print(A)
# 3 5 (input values)
# 3 (printing A)

0개의 댓글