Python faire une chaîne une ligne

s = "a\nb\nc\nd\n"
t = str.join(" ", s.splitlines())
#output "a b c d"
Tough Tarsier