如何在提示中添加新行?
session.send('This is line 1. This is line 2.');
我希望输出看起来像:
这是第1行。
这是第2行。
但我得到的输出是:
这是第1行。这是第2行。
我尝试使用\n
,\r\n
和os.EOL
,但都没有效果。是否可以在提示中添加新行?
答案 0 :(得分:3)
您应该尝试使用\n\n
。
答案 1 :(得分:0)
好吧,这取决于
单引号''
双引号“”
如果使用双引号,则必须使用/n/n
和
如果使用单引号,则必须使用<br/>
示例
session.send('This is Line 1 <br/>This is Line 2<br/>');
session.send("This is line 1\n\n This is line 2\n\n");