如何在多行上分离打印命令

时间:2014-12-25 15:32:37

标签: python-2.7

我想编写一长串文本,并在编写代码时将其分为两行,但是当代码运行时,我希望该行显示为一行。

side1 = raw_input('Enter the length of the first side, of the triangle: ') 

所以我想开始一个新的行,其中逗号在文本编辑器中,但是当代码在python中运行时,我希望问题显示为一行。对不起,感到困惑。

3 个答案:

答案 0 :(得分:2)

如果我理解你的新配方是的话可能就是这样。

简单地将你的新行放在像这样的parentesis之间

side1 = raw_input('Enter the length of the first side,'
                  ' of the triangle: ') 

答案 1 :(得分:0)

您可以使用\n(换行符)字符:

side1 = raw_input('Enter the length of the first side,\n of the triangle: ') 

答案 2 :(得分:0)

side1 = raw_input('Enter the length of the first side, \n of the triangle: ') 

\n代表新行,\t代表水平空间(制表)