membongkar
# unpack list
x = [1,2,3,4,5]
print(*x) # return 1 2 3 4 5
Impossible Impala
# unpack list
x = [1,2,3,4,5]
print(*x) # return 1 2 3 4 5