当前位置:Gxlcms > Python > python中换行符怎么用

python中换行符怎么用

时间:2021-07-01 10:21:17 帮助过:104人阅读

python程序代码如下:

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

上一行代码的输出如下:

I'm Bob. What's your name?

上面的输出没有换行。想在What之前换行,效果是:

I'm Bob. 
What's your name?

该怎么解决呢?

在What之前敲回车,行吗?不行,这个回车的效果是语句换行,不是输出内容换行。

用换行符的解决办法

上述问题的解决办法是在What之前插入换行符。写法是:

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

输出结果

I'm Bob.
What's your name?

以上就是python中换行符怎么用的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行