更多课程 选择中心


Python培训

400-111-8989

【Python习题库】打印出你的变量

  • 发布:Python培训
  • 来源:笨办法学 Python
  • 时间:2019-05-31 11:35

我们现在要键入更多的变量并且把它们打印出来。这次我们将使用一个叫“格式化字符串 (format string)”的东西. 每一次你使用 " 把一些文本引用起来,你就建立了一个字符串。字符串是程序将信息展示 给人的方式。你可以打印它们,可以将它们写入文件,还可以将它们发送给网站服务器,很多事情都是通过字符串交流实现的。

字符串是非常好用的东西,所以再这个练习中你将学会如何创建包含变量内容的字符串。使用专门的格式和语法把变量的内容放到字符串里,相当于来告诉 python :“嘿,这是一个格式化字符串,把这些变量 放到那几个位置。”

一样的,即使你读不懂这些内容,只要一字不差地键入就可以了。

1 my_name = 'Zed A. Shaw'

2 my_age = 35 # not a lie

3 my_height = 7

4 # inches 4 my_weight = 180 # lbs

5 my_eyes = 'Blue'

6 my_teeth = 'White'

7 my_hair = 'Brown'

8

9 print "Let's talk about %s." % my_name

10 print "He's %d inches tall." % my_height

11 print "He's %d pounds heavy." % my_weight

12 print "Actually that's not too heavy."

13 print "He's got %s eyes and %s hair." % (my_eyes, my_hair)

14 print "His teeth are usually %s depending on the coffee." % my_teeth

15

16 # this line is tricky, try to get it exactly right

17 print "If I add %d, %d, and %d I get %d." % (

18 my_age, my_height, my_weight, my_age + my_height + my_weight)

运行的后的结果如下:

$

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.

$

免责声明:内容和图片源自网络,版权归原作者所有,如有侵犯您的原创版权请告知,我们将尽快删除相关内容。

预约申请免费试听课

填写下面表单即可预约申请免费试听! 怕学不会?助教全程陪读,随时解惑!担心就业?一地学习,可全国推荐就业!

上一篇:【Python习题库】变量让程序更“平易近人”
下一篇:【Python习题库】字符串和文本

Python IDE推荐7个你可能会错过的Python IDE

Python面试题之Python中爬虫框架或模块的区别

2021年Python面试题及答案汇总详解

python数据分析,你需要这些工具

  • 扫码领取资料

    回复关键字:视频资料

    免费领取 达内课程视频学习资料

Copyright © 2023 Tedu.cn All Rights Reserved 京ICP备08000853号-56 京公网安备 11010802029508号 达内时代科技集团有限公司 版权所有

选择城市和中心
黑龙江省

吉林省

河北省

湖南省

贵州省

云南省

广西省

海南省