imsmile2000 2022. 12. 7. 00:20

✔ List 공백으로 구분해 출력

print(' '.join(map(str,list)))

 

✔ 여러개 입력받기

num_list = list(map(int, input().split()))