Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前做
# three extra blank lines per srh for debug log logging.info('') logging.info('') logging.info('')
但这使得代码臃肿,有没有更好的办法?
这不是一个真正的空行,但有时我会使用它:
logging.info('-' * 80)