pythonの論理演算子_Pythonの論理演算子


pythonの論理演算子
Logical Operators:
論理演算子:
There are basically three types of logical operators as below: 
基本的には、次の3種類の論理演算子があります.
  • Andおよび
  • Orまたは
  • Not
  • There above operators semantics or meaning is the same as their meaning in English.  To demonstrate we can take one simple example like a number can be greater then 2 and less then 5, so if we consider this example then we know that there could be only two possible numbers comes in between i.e. 3 and 4. So now let us run this example and verify the results by passing different numbers. 
    上の演算子の意味または意味は英語の意味と同じです.この点を説明するために、簡単な例を挙げることができます.例えば、1つの数字は2より大きく、5より小さくすることができます.したがって、この例を考慮すると、3と4の間に2つの可能な数字しかない可能性があることがわかります.この例を実行し、異なる数値を渡すことで結果を検証します.my_input = raw_input("Input any number less than 10 >>>") print("Number entered was ") + my_input my_input = int(my_input) if (my_input > 2 and my_input < 5):     result = True else:     result = False print result
    We have entered say 3 then the output of the above code will print as "True"because the condition satisfies that the passed number is greater than 2 and less than 3.  The above code is a simple example of how to use "AND"logical operators in Python. 
    3を入力すると、上記のコードの出力は「True」と印刷されます.条件が満たされて伝達された数字が2より大きく、3より小さいためです.上記のコードは、「AND」ロジックの簡単な例Pythonの演算子をどのように使用するかです.Input any number less than 10 >>> 3 Number entered was 3 True
    Now let us take similar example passing the same number as 3 but using "OR"condition stating can be less then 2 or less then 5 if any one of the condition matches then the result should be true. 
    次に、同様の例を例に挙げて、この例は3と同じ数字を渡しますが、条件のいずれかが一致している場合は、OR条件を使用して2未満または5未満であることを説明し、結果はtrueである必要があります.my_input = raw_input("Input any number less than 10 >>>") print("Number entered was ") + my_input my_input = int(my_input) if (my_input < 2 or my_input < 5):     result = True else:     result = False print result
    Below is the result when we passed "3"using OR logical operator to the conditions. 
    次に、OR論理演算子を使用して条件に「3」を渡した結果を示します.Input any number less than 10 >>> 3 Number entered was 3 True
    And below if the False output as 6 does not fall under any criteria. 
    なお、以下の条件において、False出力が6の場合は、いかなる条件にも該当しない.Input any number less than 10 >>> 6 Number entered was 6 False
    Now let us take an example on how to use "Not"logical operators.  Say we have a result from some output and now our variable contains the value as  4 and let's call the variable name as "abc". 
    次に、非論理演算子の使用方法について説明します.ある出力から結果を得たと仮定します.現在、変数に含まれる値は4で、変数名をabcと呼びます.
    Below is my condition to validate if the value from "abc"is present in the list? 
    以下は、リストにabc値が存在するかどうかを検証する条件です.abc = 4 if abc not in [3,7,5] :     print("condition met") else:     print("condition not met")
    Result as below.
    結果は以下の通りです. condition met
    Now we know how to use logical operators in Python programming. This is a basic explanation on how to use Logical Operators in Python programming language. 
    Pythonプログラミングで論理演算子を使用する方法がわかりました.これはPythonプログラミング言語で論理演算子をどのように使用するかについての基本的な説明です.
    Thank you for reading my article, please feel free to leave me some feedback or to suggest any future topics.
    私の文章を読んでくれてありがとう.いつでもフィードバックしたり、未来の話題を出したりしてください.
    I'll be looking forward to hearing from you – Swadhin Ray (Sloba)
    お返事お待ちしております-Swadhin Ray(Sloba)
    For more information about me, please check out my Experts Exchange Profile page.
    詳細については、Experts Exchangeの個人情報ページを参照してください.
    Edited by: Andrew Leniart
    編集者:アンドリュー・レニアット(Andrew Leniart)
    翻訳:https://www.experts-exchange.com/articles/32797/Logical-Operators-in-Python.html
    pythonの論理演算子