如何在python中创建换行符?

时间:2013-09-04 04:02:42

标签: python

我是堆栈溢出的新手,也是python的新手。我在python的第3章。但是我在开始换行时遇到了麻烦,这就是我所拥有的:

name = input("Hi. What's your name? ")    
print(name)    
print("Hi,", name)    
name = input("How are you? ")    
print("We are glad you're doing,", name)    
input("\n\nPress the enter key to exit.")

1 个答案:

答案 0 :(得分:3)

使用\n,这是一个换行符,你需要一个反斜杠来逃避它

所以,例如

print(name+'\n')

将以换行符打印。

由于目前还不清楚你要做什么,上面会有两个像DietrichEpp所提到的换行符,因为print()会在最后写一个'\n'字符。