官术网_书友最值得收藏!

Arithmetic operations

Python enables performing all the standard arithmetic operations. Let's launch the Python interpreter and learn more:

  • Addition: Two numbers can be added using the + operand. The result is printed on the screen. Try the following example using the python interpreter:
       >>>123+456 
579
  • Subtraction: Two numbers can be added using the - operand:
       >>>456-123 
333
>>>123-456
-333
  • Multiplication: Two numbers can be multiplied as follows:
       >>>123*456 
56088
  • Division: Two numbers can be pided as follows:
       >>>456/22 
20.727272727272727
>>>456/2.0
228.0
>>>int(456/228)
2
  • Modulus operator: In Python, the modulus operator (%) returns the remainder of a pision operation:
       >>>4%2 
0
>>>3%2
1
  • The floor operator (//) is the opposite of the modulus operator. This operator returns the floor of the quotient, that is, the integer result, and discards the fractions:
       >>>9//7 
1
>>>7//3
2
>>>79//25
3
主站蜘蛛池模板: 岑溪市| 南投市| 吉安县| 六安市| 环江| 柳林县| 璧山县| 区。| 新乡县| 普陀区| 南安市| 禹州市| 石柱| 华池县| 奉贤区| 凤冈县| 东台市| 金湖县| 修武县| 龙川县| 金乡县| 杂多县| 北川| 哈巴河县| 万荣县| 思茅市| 陆丰市| 临潭县| 麟游县| 黎平县| 阳江市| 沿河| 乌审旗| 黄大仙区| 曲水县| 仁寿县| 旌德县| 海林市| 越西县| 泰安市| 西宁市|