笨办法学Python ex07

更多的打印(输出)


  • 输入:
# -- 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
  • 运行:
笨办法学Python ex07_第1张图片

你可能感兴趣的:(笨办法学Python ex07)