What is wrong with the following python code snippet
#
l =["c"
"py",
"js"
]
#
We missed the comma after "c". The python will concatenate it with "py". Resulting in ["cpy","js"].
@RecursiveNeuron That looks like a bit of syntatic sugar that might cause more pain than it relieves.
@RecursiveNeuron Python's automatic string concatenation can be useful for splitting long strings across multiple physical lines to improve readability and stay within line length limits.