因此,當我嘗試打印Python函數function.__doc__
的幫助/信息時,在文檔字符串中出現\n
時,控制檯輸出而不是打印新行,打印\n
。任何人都可以幫助我禁用/幫助與此?python newline display in console
這是我的輸出:
'divmod(x, y) -> (div, mod)\n\nReturn the tuple ((x-x%y)/y, x%y). Invariant: div*y + mod == x.'
我想輸出是:
'divmod(x, y) -> (div, mod)
Return the tuple ((x-x%y)/y, x%y). Invariant: div*y + mod == x.'
P.S:我已經試過這在OS X,Ubuntu的使用Python 2.7。
是。所以根據我的理解,爲了'unsee''\ n',我應該使用print來代替只輸入[function] .__ doc__? – armundle
是的。它也會放棄報價。 –