标签:
在python中,三引号支持字符串跨多行、包含换行符号、制表符号、以及其它特殊字符
>>> hi = ‘‘‘ ... this ... is a ... test ... ‘‘‘ >>> print hi this is a test >>> hi ‘\nthis \nis a \ntest\n‘ >>>
python中的三引号
原文地址:http://www.cnblogs.com/abclife/p/5238209.html