Python学习4-字符串

上一篇 / 下一篇  2014-06-25 14:42:09 / 个人分类:笨办法学Python

$ex7.py 源码
x = "There 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)
print (".aads" * 10)# 输出10次

输出结果:
There are 10 types of people.
Those who know binary and those who don't.
I said: 'There are 10 types of people.'.
I also said: 'Those who know binary and those who don't.'.
Isn't that joke so funny?! False
This is the left side of...a string with a right side.
.aads.aads.aads.aads.aads.aads.aads.aads.aads.aads


TAG:

 

评分:0

我来说两句

Open Toolbar