ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
# 习题 9: 打印,打印,打印 <table class="highlighttable"><tbody><tr><td class="linenos"> <div class="linenodiv"> <pre> 1&#13; 2&#13; 3&#13; 4&#13; 5&#13; 6&#13; 7&#13; 8&#13; 9&#13; 10&#13; 11&#13; 12&#13; 13&#13; 14</pre> </div> </td> <td class="code"> <div class="highlight"> <pre># Here's some new strange stuff, remember type it exactly.&#13; &#13; days = "Mon Tue Wed Thu Fri Sat Sun"&#13; months = "Jan\nFeb\nMar\nApr\nMay\nJun\nJul\nAug"&#13; &#13; print "Here are the days: ", days&#13; print "Here are the months: ", months&#13; &#13; print """&#13; There's something going on here.&#13; With the three double-quotes.&#13; We'll be able to type as much as we like.&#13; Even 4 lines if we want, or 5, or 6.&#13; """&#13; </pre> </div> </td> </tr></tbody></table> ### 你应该看到的结果 ~~~ $ python ex9.py Here are the days: Mon Tue Wed Thu Fri Sat Sun Here are the months: Jan Feb Mar Apr May Jun Jul Aug There's something going on here. With the three double-quotes. We'll be able to type as much as we like. Even 4 lines if we want, or 5, or 6. $ ~~~ ### 加分习题 1. 自己检查结果,记录你犯过的错误,并且在下个练习中尽量不犯同样的错误。