首页 > 其他 > 详细

Exercise 6: Strings And Text

时间:2014-10-22 14:22:39      阅读:233      评论:0      收藏:0      [点我收藏+]
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

 

Exercise 6: Strings And Text

原文:http://www.cnblogs.com/hluo/p/4042981.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!