整理Python中的赋值运算符


Posted in Python onMay 13, 2015

下表列出了所有Python语言支持的赋值运算符。假设变量a持有10和变量b持有20,则:

整理Python中的赋值运算符

 例如:

试试下面的例子就明白了所有在Python编程语言可供选择的赋值运算符:

#!/usr/bin/python

a = 21
b = 10
c = 0

c = a + b
print "Line 1 - Value of c is ", c

c += a
print "Line 2 - Value of c is ", c 

c *= a
print "Line 3 - Value of c is ", c 

c /= a 
print "Line 4 - Value of c is ", c 

c = 2
c %= a
print "Line 5 - Value of c is ", c

c **= a
print "Line 6 - Value of c is ", c

c //= a
print "Line 7 - Value of c is ", c

当执行上面的程序,它会产生以下结果:

Line 1 - Value of c is 31
Line 2 - Value of c is 52
Line 3 - Value of c is 1092
Line 4 - Value of c is 52
Line 5 - Value of c is 2
Line 6 - Value of c is 2097152
Line 7 - Value of c is 99864
Python 相关文章推荐
Python列表(list)、字典(dict)、字符串(string)基本操作小结
Nov 28 Python
Python获取单个程序CPU使用情况趋势图
Mar 10 Python
python开发之IDEL(Python GUI)的使用方法图文详解
Nov 12 Python
详解Python Socket网络编程
Jan 05 Python
python select.select模块通信全过程解析
Sep 20 Python
django文档学习之applications使用详解
Jan 29 Python
python实现点对点聊天程序
Jul 28 Python
Python爬虫常用小技巧之设置代理IP
Sep 13 Python
django框架自定义模板标签(template tag)操作示例
Jun 24 Python
python通过http下载文件的方法详解
Jul 26 Python
PyQt 图解Qt Designer工具的使用方法
Aug 06 Python
Python 3.10 的首个 PEP 诞生,内置类型 zip() 迎来新特性(推荐)
Jul 03 Python
实例说明Python中比较运算符的使用
May 13 #Python
举例讲解Python中的算数运算符的用法
May 13 #Python
详细解析Python中的变量的数据类型
May 13 #Python
Python编程入门的一些基本知识
May 13 #Python
python实现字符串和日期相互转换的方法
May 13 #Python
python判断给定的字符串是否是有效日期的方法
May 13 #Python
python对url格式解析的方法
May 13 #Python
You might like
模拟xcopy的函数
2006/10/09 PHP
php 分页函数multi() discuz
2009/06/21 PHP
php上的memcache和memcached两个pecl库
2010/03/29 PHP
PHP缓存技术的使用说明
2011/08/06 PHP
php截取中文字符串不乱码的方法
2013/12/25 PHP
PHP5.4起内置web服务器使用方法
2016/08/09 PHP
php将html转为图片的实现方法
2017/05/19 PHP
浅谈ThinkPHP5.0版本和ThinkPHP3.2版本的区别
2017/06/17 PHP
基于swoole实现多人聊天室
2018/06/14 PHP
PHP常见数组排序方法小结
2018/08/20 PHP
php解决crontab定时任务不能写入文件问题的方法分析
2019/09/16 PHP
extjs 学习笔记(一) 一些基础知识
2009/10/13 Javascript
JQuery 技巧和窍门整理(8个)
2010/04/22 Javascript
html组件不可输入(只读)同时任何组件都有效
2013/04/01 Javascript
JavaScript获取多个数组的交集简单实例
2013/11/11 Javascript
javascript获取checkbox复选框获取选中的选项
2014/08/12 Javascript
jQuery中fadeOut()方法用法实例
2014/12/24 Javascript
AngularJS学习笔记之基本指令(init、repeat)
2015/06/16 Javascript
AngularJS实现全选反选功能
2015/12/08 Javascript
浅谈JavaScript中变量和函数声明的提升
2016/08/09 Javascript
AngularJS 表达式详解及实例代码
2016/09/14 Javascript
微信小程序 wxapp地图 map详解
2016/10/31 Javascript
JS实现快速的导航下拉菜单动画效果附源码下载
2016/11/01 Javascript
JavaScript实现开关等效果
2017/09/08 Javascript
JS运动特效之完美运动框架实例分析
2018/01/24 Javascript
[01:07:11]Secret vs Newbee 2019国际邀请赛小组赛 BO2 第二场 8.15
2019/08/17 DOTA
python求列表交集的方法汇总
2014/11/10 Python
在MAC上搭建python数据分析开发环境
2016/01/26 Python
详解Python 协程的详细用法使用和例子
2018/06/15 Python
假日旅行社实习自我鉴定
2013/09/24 职场文书
食品安全汇报材料
2014/08/18 职场文书
学校关爱留守儿童活动方案
2014/08/27 职场文书
地方白酒代理协议书
2014/10/25 职场文书
导游词之镜泊湖
2019/12/09 职场文书
Python使用BeautifulSoup4修改网页内容
2022/05/20 Python
利用Redis实现点赞功能的示例代码
2022/06/28 Redis