0
lists
why does output contain list with single-quotes when code contains double-quotes?
1 Odpowiedź
+ 1
because that's the way Python default format list (and strings, if you use repr() output), until string contains ar least one single quote (then string is enclosed with double quotes)...