I'm trying to understand what * is doing to data to only print the letters in the list.
data = ["f", "o", "u", "r"]
print(*data, sep=' ')
I'm trying to understand what * is doing to data to only print the letters in the list.
data = ["f", "o", "u", "r"]
print(*data, sep=' ')