この記事では主にPython算術演算子の詳細な例に関する関連情報を紹介します。必要な方は
Python算術演算子
を参照してください。以下では、変数aが10、変数bが20であると仮定します。 :
Operator | Description | Instance |
---|---|---|
+ | Add - 2つのオブジェクトAdd | a + b 出力結果30 |
- | 減算 - 負の数を取得するか減算しますある数値から別の数値 | a - b 出力結果は-10です |
* | 乗算 - 2つの数値を乗算するか、数回繰り返される文字列を返します | a * b 出力結果は200 |
/ | division - x を y で割った | b / a 出力結果 2 |
% | modulo - 除算の余りを返す | b % a 出力結果 0 |
** | Power - x | a**bのy乗を返します 出力結果 20 |
// | Divisor - 商の整数部分を返します | 9//2 出力結果 4、9.0 //2.0 出力result 4.0 |
次の例は、Python でのすべての算術演算子の操作を示しています:
#!/usr/bin/python a = 21 b = 10 c = 0 c = a + b print "Line 1 - Value of c is ", c c = a - b print "Line 2 - Value of c is ", c c = a * b print "Line 3 - Value of c is ", c c = a / b print "Line 4 - Value of c is ", c c = a % b print "Line 5 - Value of c is ", c a = 2 b = 3 c = a**b print "Line 6 - Value of c is ", c a = 10 b = 5 c = a//b print "Line 7 - Value of c is ", c
Line 1 - Value of c is 31 Line 2 - Value of c is 11 Line 3 - Value of c is 210 Line 4 - Value of c is 2 Line 5 - Value of c is 1 Line 6 - Value of c is 8 Line 7 - Value of c is 2
以上がPythonの算術演算子の例を詳しく解説の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。