Python
[python 공부] 여러 변수에 list 값 여러개 할당
kyeongjun-dev
2020. 10. 30. 16:03
l =[1,2,3]
a, b, c = l
print(a, b, c)
# 결과 1 2 3