Python icon indicating copy to clipboard operation
Python copied to clipboard

strings/join.py is incorrect

Open osman-haider opened this issue 1 year ago • 0 comments

Repository commit

3b1b70bf0e60dddb14917dd7cad34a41d429df01

Python version (python --version)

Python 3.10

Dependencies version (pip freeze)

n/a

Expected behavior

s = ["", "", ""] join(",", s) == ",".join(s)

',,' == ',,'

Actual behavior

s = ["", "", ""] join(",", s) == ",".join(s)

'' != ',,'

osman-haider avatar Dec 03 '24 12:12 osman-haider