\n是换行符:
使用时需要放在字符串里面,成为字符串的一部分(不要嫌乱,这是我之前犯的错误)。
示例:
>>>print("I am Guido \n what‘s yonr name?")
>>>I am Guido
>>>what‘s your name?
\t是制表符:
使用时效果如下。
示例:
>>>print("I am Guido \n \t what‘s your name?")
>>>I am Guido
>>> what‘s your name?
时间: 2024-10-23 13:46:50