详解Python中的变量及其命名和打印


Posted in Python onMarch 11, 2016

在程序中,变量就是一个名称,让我们更加方便记忆。

cars = 100 
space_in_a_car = 4.0 
drivers = 30 
passengers = 90 
cars_not_driven = cars - drivers 
cars_driven = drivers 
carpool_capacity = cars_driven * space_in_a_car 
average_passengers_per_car = passengers / cars_driven

  

print "There are", cars, "cars available." 
print "There are only", drivers, "drivers available." 
print "There will be", cars_not_driven, "empty cars today." 
print "We can transport", carpool_capacity, "people today." 
print "We have", passengers, "to carpool today." 
print "We need to put about", average_passengers_per_car, "in each car."

提示:下划线一般用在变量名中表示假想的空格。让变量名的可读性高一点。

运行结果:

root@he-desktop:~/mystuff# python ex4.py
There are 100 cars available.
There are only 30 drivers available.
There will be 70 empty cars today.
We can transport 120.0 people today.
We have 90 to carpool today.
We need to put about 3 in each car.
root@he-desktop:~/mystuff#


更多的变量和打印
现在我们输入更多的变量并打印他们,通常我们用""引住的叫字符串。

字符串是相当方便的,在练习中我们将学习怎么创建包含变量的字符串。有专门的方法将变量插入到字符串中,相当于告诉Python:“嘿,这是一个格式化字符串,把变量放进来吧。”

输入下面的程序:

# -- coding: utf-8 -- 
my_name = 'Zed A. Shaw' 
my_age = 35 # 没撒谎哦 
my_height = 74 # 英寸 
my_weight = 180 # 磅 
my_eyes = 'Blue' 
my_teeth = 'White' 
my_hair = 'Brown'

  

print "let's talk about %s." % my_name 
print "He's %d inches tall." % my_height 
print "He's %d pounds heavy." % my_weight 
print "Actually that's not too heavy." 
print "He's got %s eyes and %s hair." % (my_eyes, my_hair) 
print "His teeth are usually %s depending on the coffee." % my_teeth

# 下面这行比较复杂,尝试写对它。 
print "If I add %d, %d, and %d I get %d." % ( 
  my_age, my_height, my_weight, my_age + my_height + my_weight)

提示:如果有编码问题,记得输入第一句。

运行结果:

root@he-desktop:~/mystuff# 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.
root@he-desktop:~/mystuff#
Python 相关文章推荐
Python 序列化 pickle/cPickle模块使用介绍
Nov 30 Python
Python通过递归遍历出集合中所有元素的方法
Feb 25 Python
python运行其他程序的实现方法
Jul 14 Python
Python抓取聚划算商品分析页面获取商品信息并以XML格式保存到本地
Feb 23 Python
tensorflow识别自己手写数字
Mar 14 Python
Python常用字符串替换函数strip、replace及sub用法示例
May 21 Python
Scrapy基于selenium结合爬取淘宝的实例讲解
Jun 13 Python
python opencv实现图片旋转矩形分割
Jul 26 Python
Python3 翻转二叉树的实现
Sep 30 Python
django 多数据库及分库实现方式
Apr 01 Python
python将logging模块封装成单独模块并实现动态切换Level方式
May 12 Python
Selenium之模拟登录铁路12306的示例代码
Jul 31 Python
Python基本语法经典教程
Mar 11 #Python
Python使用PIL库实现验证码图片的方法
Mar 11 #Python
Python2.x利用commands模块执行Linux shell命令
Mar 11 #Python
Python实现列表转换成字典数据结构的方法
Mar 11 #Python
python中enumerate函数遍历元素用法分析
Mar 11 #Python
python实现class对象转换成json/字典的方法
Mar 11 #Python
Windows下Python的Django框架环境部署及应用编写入门
Mar 10 #Python
You might like
水质对咖图啡风味的影响具体有哪些
2021/03/03 冲泡冲煮
我的论坛源代码(四)
2006/10/09 PHP
PHP4 与 MySQL 数据库操作函数详解
2006/12/06 PHP
mac下使用brew配置环境的步骤分享
2011/05/23 PHP
克隆一个新项目的快捷方式
2013/04/10 PHP
php的POSIX 函数以及进程测试的深入分析
2013/06/03 PHP
ThinkPHP中pathinfo的访问模式、路径访问模式及URL重写总结
2014/08/23 PHP
jquery uaMatch源代码
2011/02/14 Javascript
javascript date格式化示例
2013/09/25 Javascript
Jquery创建层显示标题和内容且随鼠标移动而移动
2014/01/26 Javascript
原生JS实现响应式瀑布流布局
2015/04/02 Javascript
网页收藏夹显示ICO图标(代码少)
2015/08/04 Javascript
NodeJS使用formidable实现文件上传
2016/10/27 NodeJs
boostrapTable的refresh和refreshOptions区别浅析
2017/01/22 Javascript
React-router中结合webpack实现按需加载实例
2017/05/25 Javascript
Vue-Router进阶之滚动行为详解
2017/09/13 Javascript
总结js函数相关知识点
2018/02/27 Javascript
ionic使用angularjs表单验证(模板验证)
2018/12/12 Javascript
linux服务器快速卸载安装node环境(简单上手)
2021/02/22 Javascript
Python中实现参数类型检查的简单方法
2015/04/21 Python
python代码 if not x: 和 if x is not None: 和 if not x is None:使用介绍
2016/09/21 Python
老生常谈python函数参数的区别(必看篇)
2017/05/29 Python
Python2.7实现多进程下开发多线程示例
2019/05/31 Python
Python序列对象与String类型内置方法详解
2019/10/22 Python
Python计算IV值的示例讲解
2020/02/28 Python
谈谈Python:为什么类中的私有属性可以在外部赋值并访问
2020/03/05 Python
PAUL HEWITT手表美国站:德国北部时尚生活配饰品牌,船锚元素
2017/11/18 全球购物
测绘工程专业个人自我评价
2013/12/01 职场文书
房地产出纳岗位职责
2013/12/01 职场文书
《小熊住山洞》教学反思
2014/02/21 职场文书
孝敬父母的活动方案
2014/08/31 职场文书
家庭财产分割协议书范本
2014/11/24 职场文书
500字作文之难忘的同学
2019/12/20 职场文书
JavaCV实现照片马赛克效果
2022/01/22 Java/Android
Nginx如何获取自定义请求header头和URL参数详解
2022/07/23 Servers
JS前端可视化canvas动画原理及其推导实现
2022/08/05 Javascript