将raw_input提示符编码成多行...?

时间:2015-07-06 05:23:40

标签: python string python-2.7 indentation raw-input

新手在这里。我在循环中得到了这个raw_input提示符,因此它是缩进的;

userInput = raw_input('Enter n to deal a new hand, r to replay the last\
hand, or e to end game: ')

当我运行这个时,我在" last"之间得到2个空格(缩进)标签。并且"手"。有没有办法摆脱这种差距?

提前多多感谢。

1 个答案:

答案 0 :(得分:1)

您可以使用string literal concatenation

{{1}}
  

可能是多个相邻的字符串文字(由空格分隔)   允许使用不同的引用约定,其含义是   与他们的串联相同。因此,“你好”'世界'是等价的   到“helloworld”。此功能可用于减少数量   需要反斜杠,以便在长条中方便地分割长字符串   行,甚至是为字符串部分添加注释