Strings
3 / 18
EasyOutput prediction

split() and join() round-trip

What does this code print?

s = "one,two,three"
parts = s.split(",")
result = " | ".join(parts)
print(result)

← → arrow keys to navigate

Sign in to save your progress.