2 - automatically generated code has no obligation to be idiomatic
3 - If I had a cent for every time "idiomatic" code got in the way of readability I'd be a millionaire right now
iF YoR CodE LoOks lIKe tHIs, yOu FaIl.
Sure, because breaking a 82 char line in python in 2 lines (because pep8) is much more readable than leaving it at 82 chars.
a = "a long message with 70 chars..."
vs
a = ("a long message..."
" with 70 chars...")
A = \ "A really long string"
2 - automatically generated code has no obligation to be idiomatic
3 - If I had a cent for every time "idiomatic" code got in the way of readability I'd be a millionaire right now