Python学习笔记(笨方法学Python3)-习题7:更多打印
程序员文章站
2022-06-16 09:34:42
...
print("Mary had a little lamb.")
print("Its fleece was white as {}.".format('snow'))
print("And everywhere that Mary went.")
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, end = ' ')
print(end7 + end8 + end9 + end10 + end11 + end12)
结果:
Marry had a little lamb.
Its fleese was white as snow.
And everywhere that Mary went.
..........
Cheese Burger
python 中两个引号都是可以的,不过单引号常用于表示创建简短的字符串
end是print()函数的一个参数。end 是输出语句结束以后附加的字符串,它的默认值是换行(’\n’)。
上一篇: 你昨晚还说我床上技术越来越赞