#!/usr/bin/python # exact position of python
#!/usr/bin/env python # position of python in enviornment
# -*- coding:utf-8 -*- # coding
formatter = "%r %r %r %r"
print formatter % (1, 2, 3, 4)
print formatter % ("one", "two", "three", "four")
print formatter % (True, False, False, True)
print formatter % (formatter, formatter, formatter, formatter)
print formatter % (
"I had this thing.",
"That you could type up right.",
"But it didn't sing.",
"So I said goodnight."
)
Python Exercise #8
最新推荐文章于 2015-08-18 11:45:46 发布