初学者程序员在这里。所以忍受我。我有一个简单的python程序。
print "How tall are you?",
height = raw_input()
print "So you're %r tall" %(height)
如果我输入6'6'的高度''python将输出
所以你是'6 \ 6“'
如何从输出中删除正斜杠“\”?
提前致谢!
答案 0 :(得分:7)
%r
转换为高度的repr,您应该使用%s
代替
如果你使用Python> = 2.6,你可以用这种方式编写
print "So you're {height} tall.".format(height=height)