#!/usr/bin/python # exact position of python
#!/usr/bin/env python # position of python in enviornment variables
# -*- coding:utf-8 -*- # coding
# %r is for debugging,displaying the "raw" data and the others are used for displaying to users
x = "Thre are %d types of people." % 10
binary = "binary"
do_not = "don't"
y = "Those who know %s and those who %s." % (binary, do_not)
print x
print y
print "I said: %r." % x
print "I also said: '%s'." % y
hilarious = False
joke_evaluation = "Isn't that joke so funny?! %r"
print joke_evaluation % hilarious
w = "This is the left side of..."
e = "a string with a right side."
print w + e
Python Exercise #6
最新推荐文章于 2019-04-12 17:01:17 发布