您好,欢迎来到99网。
搜索
您的当前位置:首页python怎么把字符串换行输出

python怎么把字符串换行输出

来源:99网


python中字符串换行输出使用转义字符 或使用三引号实现:

使用转义字符 :

print("I'm Bob.
What's your name?")

输出结果:

I'm Bob.
What's your name?

使用三引号:

python三引号允许一个字符串跨多行,字符串中可以包含换行符、制表符以及其他特殊字符。

>>> hi = '''hi there'''
>>> hi # repr()
'hi
there'
>>> print hi # str()
hi 
there

更多Python相关技术文章,请访问Python教程栏目进行学习!

Copyright © 2019- 99spj.com 版权所有 湘ICP备2022005869号-5

违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务