如何摆脱Python中的正斜杠raw_input()

时间:2011-04-21 02:51:29

标签: python forward slash raw-input

初学者程序员在这里。所以忍受我。我有一个简单的python程序。

print "How tall are you?",
height = raw_input()

print "So you're %r tall" %(height)

如果我输入6'6'的高度''python将输出

所以你是'6 \ 6“'

如何从输出中删除正斜杠“\”?

提前致谢!

1 个答案:

答案 0 :(得分:7)

%r转换为高度的repr,您应该使用%s代替

如果你使用Python> = 2.6,你可以用这种方式编写

print "So you're {height} tall.".format(height=height)