更多的打印(输出)
# -- coding: utf-8 --
print "Mary had a little lamb."
print "It's fleece was white as %s." % 'snow'
print "And everywhere that Mary went."
print "." * 10 #what'd that do? 10个.
end1 = "C"
end2 = "h"
end3 = "e"
end4 = "e"
end5 = "s"
end6 = "e"
end7 = "B"
end8 = "u"
end9 = "r"
end10 = "g"
end11 = "e"
end12 = "r"
# what that comma at the end.try removing it to see what happens
print end1 + end2 + end3 + end4 + end5 + end6,
# 用逗号可以将代码分行,实际打印出来都是在一行
print end7 + end8 + end9 + end10 + end11 + end12
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。