【笨方法学python】ex6 - 字符串(string)和文本

代码如下:

点击查看代码
# -*-coding:utf-8- -*-
# 字符串(string)和文本

x = "There are %d types of people." % 10
binary = "bianry"
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

执行结果:
image

posted @ 2022-10-05 03:45  TiramisuPS  阅读(21)  评论(0编辑  收藏  举报