ex1.py不会在第7行打印
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ex1.py不会在第7行打印相关的知识,希望对你有一定的参考价值。
我做了一个关于如何打印的练习。我试着打印这段代码:
print "Hello World!."
print "Hello Again."
print "I like typing this."
print "this is fun."
print "Yay, Printing."
print "I would much rather you 'not'."
print "I "Said" do not touch this."
但是,当我尝试在终端上运行它时,它给了我一个错误:
File "ex1.py", line 7
print "I "Said" do not touch this."
^
SyntaxError: invalid syntax
答案
如果要打印实际引号,则需要......
用反斜杠逃脱它们:
print "I "Said" do not touch this."
或者将整个字符串括在另一种引号中(单对双):
print 'I "Said" do not touch this.'
以上是关于ex1.py不会在第7行打印的主要内容,如果未能解决你的问题,请参考以下文章
winform中,printDocment类,10行信息,后五行在打印时在第二页打印,即共用二页纸打印出10行信息,怎么做?