In Python, you can use the unpacking *
operator to unpack a list. Here is an example:
Python
# Sample list
list = [1, 2, 3, 4, 5]
# Unpack the list into individual elements
print(*list)
# Output: 1 2 3 4 5