這可能是一個愚蠢的問題,但我想知道其他人是如何處理這個問題的,或者是否有一種標準/推薦的解決方法。將長行打印爲在python中正確顯示方式
下面是兩種將python打印成長文本行的方法。哪一個應該使用?
選項1
if some_condition: # Senseless indenting.
if another condition: # Senseless indenting.
print 'This is a very long line of text that goes beyond the 80\n\
character limit.'
選項2
if some_condition: # Senseless indenting.
if another condition: # Senseless indenting.
print 'This is a very long line of text that goes beyond the 80'
print 'character limit.'
我個人覺得選項1個醜陋但選項2似乎將違背保持的Python的方式通過使用第二個print
調用簡單的事情。
就個人而言,我會使用三重引用。 – Max