python常用運算符與分支語句

###常用運算符 1.算術運算符 + ,-,*,**, /, %, // # python2: >>> 5/2 2 >>> 5/2.0 2.5 >>> 100/300.0 0.3333333333333333 >>> from __future__ import  division >>> 5/2 2.5 >>> 100/300 0.3333333333333333 # python3: >>>
相關文章
相關標籤/搜索