企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 习题 5: 更多的变量和打印 我们现在要键入更多的变量并且把它们打印出来。这次我们将使用一个叫“格式化字符串(format string)”的东西. 每一次你使用 " 把一些文本引用起来,你就建立了一个字符串。 字符串是程序将信息展示给人的方式。你可以打印它们,可以将它们写入文件,还可以将它们发送给网站服务器,很多事情都是通过字符串交流实现的。 字符串是非常好用的东西,所以再这个练习中你将学会如何创建包含变量内容的字符串。使用专门的格式和语法把变量的内容放到字符串里,相当于来告诉 python :“嘿,这是一个格式化字符串,把这些变量放到那几个位置。” 一样的,即使你读不懂这些内容,只要一字不差地键入就可以了。 <table class="highlighttable"><tbody><tr><td class="linenos"> <div class="linenodiv"> <pre> 1&#13; 2&#13; 3&#13; 4&#13; 5&#13; 6&#13; 7&#13; 8&#13; 9&#13; 10&#13; 11&#13; 12&#13; 13&#13; 14&#13; 15&#13; 16&#13; 17&#13; 18</pre> </div> </td> <td class="code"> <div class="highlight"> <pre>my_name = 'Zed A. Shaw'&#13; my_age = 35 # not a lie&#13; my_height = 74 # inches&#13; my_weight = 180 # lbs&#13; my_eyes = 'Blue'&#13; my_teeth = 'White'&#13; my_hair = 'Brown'&#13; &#13; print "Let's talk about %s." % my_name&#13; print "He's %d inches tall." % my_height&#13; print "He's %d pounds heavy." % my_weight&#13; print "Actually that's not too heavy."&#13; print "He's got %s eyes and %s hair." % (my_eyes, my_hair)&#13; print "His teeth are usually %s depending on the coffee." % my_teeth&#13; &#13; # this line is tricky, try to get it exactly right&#13; print "If I add %d, %d, and %d I get %d." % (&#13; my_age, my_height, my_weight, my_age + my_height + my_weight)&#13; </pre> </div> </td> </tr></tbody></table> Warning 如果你使用了非 ASCII 字符而且碰到了编码错误,记得在最顶端加一行 #--coding:utf-8-- 。 ### 你应该看到的结果 ~~~ $ python ex5.py Let's talk about Zed A. Shaw. He's 74 inches tall. He's 180 pounds heavy. Actually that's not too heavy. He's got Blue eyes and Brown hair. His teeth are usually White depending on the coffee. If I add 35, 74, and 180 I get 289. $ ~~~ ### 加分习题 1. 修改所有的变量名字,把它们前面的``my_``去掉。确认将每一个地方的都改掉,不只是你使用``=``赋值过的地方。 1. 试着使用更多的格式化字符。例如 %r 就是是非常有用的一个,它的含义是“不管什么都打印出来”。 1. 在网上搜索所有的 Python 格式化字符。 1. 试着使用变量将英寸和磅转换成厘米和千克。不要直接键入答案。使用 Python 的计算功能来完成。