You should restructure your loop to send arguments to print()
:
>>> numbers = [1,2,3]
>>> print(*(x for x in numbers), sep='
')
Note that you don't need the explicit generator. Just unpack the list
itself:
>>> numbers = [1,2,3]
>>> print(*numbers, sep='
')
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…