Python教程

笨办法学Python第十天:继续打印打印

本文主要是介绍笨办法学Python第十天:继续打印打印,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

编辑以下内容:

# Here's some new strange stuff,remember type it exactly.

days = "Mon Tue Wed Thu Fir Sat Sun"
months = "Jan/nFeb/nMar/nApr/nMy/nJun/nJul/nAug"

print  "Here are the days:",days
print "Here are the months:",months

print """
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.
"""

会看到以下内容:

这篇关于笨办法学Python第十天:继续打印打印的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!