Python之運算符

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