list1 = [1, 2, 3, 4] print(list1)
출력결과
[1, 2, 3, 4]
list1 = [1, 2, 3, 4] print(*list1)
1 2 3 4
출력결과가 바뀌는 것을 확인하자