整理Python中的赋值运算符
作者:goldensun 时间:2021-10-30 16:25:21
下表列出了所有Python语言支持的赋值运算符。假设变量a持有10和变量b持有20,则:
例如:
试试下面的例子就明白了所有在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
0
投稿
猜你喜欢
golang 输出重定向:fmt Log,子进程Log,第三方库logrus的详解
2024-04-27 15:40:14
python中Scrapy shell的使用
2021-03-23 08:23:24
如何取得服务器上的用户组列表?
2010-01-18 20:54:00
vue中的provide/inject的学习使用
2024-04-27 16:08:55
Python2.x版本中maketrans()方法的使用介绍
2021-02-14 21:04:25
用Python实现网易云音乐的数据进行数据清洗和可视化分析
2023-07-03 18:53:00
Python GUI自动化实现绕过验证码登录
2023-06-25 05:18:25
Python+Pillow+Pytesseract实现验证码识别
2023-07-19 14:50:44
Python远程SSH库Paramiko详细操作
2022-08-14 18:38:09
JS 去前后空格大全(IE9亲测)
2013-08-22 13:01:43
Python Tornado之跨域请求与Options请求方式
2023-11-24 19:47:08
Python趣味挑战之turtle库绘画飘落的银杏树
2023-07-21 21:46:40
Python如何通过手肘法实现k_means聚类详解
2021-03-13 16:35:34
Bootstrap简单实用的表单验证插件BootstrapValidator用法实例详解
2024-04-08 10:55:44
Python numpy之线性代数与随机漫步
2021-12-04 05:20:01
numpy数组叠加的实现示例
2021-09-29 11:59:18
Python 使用 PyMysql、DBUtils 创建连接池提升性能
2024-01-26 05:49:49
浅谈sql连接查询的区别 inner,left,right,full
2024-01-17 08:23:35
页面重构中的组件制作要点
2009-10-25 13:06:00
golang通过node_exporter监控GPU及cpu频率、温度的代码
2024-02-04 14:53:22