python中 *= 代表的意思,学习笔记
在python中 *= 代表的意思就好比一个函数公式。
在python中:
在python中:
a *= b即为:
a = a*b/=,-=,+=,也都是一样的意思,写起来很方便,比如a自增只需a+=1。