Python中的字符串输出

时间:2016-09-28 03:54:31

标签: python

 html_body += "<tr><td>{}</td><td>{}</td><td>{}</td><td>{}</td>".\format(p[0],p[1],p[2],p[3])
                                                                                           ^
  

SyntaxError:行继续符后的意外字符

看起来很正常。我应该怎么解决?

2 个答案:

答案 0 :(得分:1)

html_body += "<tr><td>{}</td><td>{}</td><td>{}</td><td>{}</td>".\form
                                                                ^

对,你有问题。反斜杠是错误提到的行继续符。拿出来。

答案 1 :(得分:0)

html_body += "<tr><td>{}</td><td>{}</td><td>{}</td><td>{}</td>".\format(p[0],p[1],p[2],p[3])
this backslash is not needed ----------------------------------^