“os.Path.Sep.join” Respostas de código

os.Path.Sep.join

1
2
>>> os.path.join("foobar", "/foo/baz/", "whatever")
'/foo/baz/whatever'
Noman Nosher

os.Path.Sep.join

1
2
3
4
>>> type(os.sep)
<class 'str'>
>>> os.sep.join(["foobar", "/foo/baz/", "whatever"])
'foobar//foo/baz//whatever'
Noman Nosher

Procure respostas de código populares por idioma

Procurar outros idiomas de código