这不起作用:
something = \
line_of_code * \ # Comment
another_line_of_code * \ # Comment
and_another_one * \ # Comment
etc
这也不是:
something = \
# Comment \
line_of_code * \
# Comment \
another_line_of_code * ...
这也不是:
something = \
''' Comment ''' \
line_of_code * \
''' Comment ''' \
another_line_of_code * ...
有没有办法将代码中的注释分成多行?