笨方法学习Python-习题7:更多打印

来源:互联网 发布:网络攻击的种类是什么 编辑:程序博客网 时间:2024/05/22 13:03
# coding=utf-8# 打印“玛丽有一只小羊”print("Mary had a little lamb.")# 打印“它的毛像雪一样白”print(("Its fleece was white as %s.") % 'snow')# 打印“玛丽一直在”print("And everywhere that Mary went.")# 打印10次“.”print("."*10) # what'd that do end1 = "C"end2 = "h"end3 = "e"end4 = "e"end5 = "s"end6 = "e"end7 = "B"end8 = "u"end9 = "r"end10 = "g"end11 = "e"end12 = "r"# watch that comma at the end. try removing it to see what happens# 打印组合字符串print(end1+end2+end3+end4+end5+end6,      end7+end8+end9+end10+end11+end12)