Self-answer after seeing the comments
What value are you going to put in between sep.
print(1,2,3, sep=‘X’) 1X2X3 output like this
* is unpacking
*[1, 2, 3] If you say it, 1, 2, 3 comes out
That is, print (*[1,2,3], step='') Then print (1,2,3, sep='') It's done Output is 123
© 2024 OneMinuteCode. All rights reserved.