This doesn't work:
something = \
line_of_code * \ # Comment
another_line_of_code * \ # Comment
and_another_one * \ # Comment
etc
Neither does this:
something = \
# Comment \
line_of_code * \
# Comment \
another_line_of_code * ...
Neither does this:
something = \
''' Comment ''' \
line_of_code * \
''' Comment ''' \
another_line_of_code * ...
Is there a way to make comments in the code broken into multiple lines?