Is it possible to print a string before using the *
operator when unpacking a tuple:
m = ['b', 'a', 'e']
print(*m, sep = ',')
b, a, e
I tried to print something before it:
print("String: " + *m, sep = ",")
My desired output would be:
String: b, a, e
Is it possible to have a string print before this, and what would be the correct syntax?