0
How do you split multiple inputs into separate lines?
2 Antworten
+ 5
Are you talking about something like this
a b c d e f as input
And output:
a
b
c
d
e
f
If so here it is how you can
print("\n".join(input().split()))
Otherwise provide an example of what you are trying to do