+ 1
something is not right
print("1,2,3,4".join("/")) output: /
4 ответов
+ 4
join stops before the last string so "1,2,3,4" won't join this("/") if it was "1,2,3,4".join("//") then it would have joined in between those two slashes
+ 2
Try:
print("/".join(("1", "2", "3", "4")))
+ 1
What output are you look for?
+ 1
print("/".join("1,2,3,4".split(',')))
# or
print("1,2,3,4".replace(',', '/'))