Python'da Operatör İşlevleri | Set 1

Python, 'operatör' modülü altında birçok matematiksel mantıksal ilişkisel bitsel vb. işlemler için önceden tanımlanmış işlevlere sahiptir. Bu makalede temel işlevlerden bazıları ele alınmaktadır. 1. ekle(a b) : - Bu işlev şunu döndürür: ek Verilen argümanlardan. Operasyon - a + b. 2. alt(a b) : - Bu işlev şunu döndürür: fark Verilen argümanlardan. Operasyon - a - b. 3.mul(a b) : - Bu işlev şunu döndürür: ürün Verilen argümanlardan. Operasyon - a*b. Python
   # Python code to demonstrate working of    # add() sub() mul()   # importing operator module    import   operator   # Initializing variables   a   =   4   b   =   3   # using add() to add two numbers   print   (  'The addition of numbers is :'    end  =  ''  );   print   (  operator  .  add  (  a     b  ))   # using sub() to subtract two numbers   print   (  'The difference of numbers is :'    end  =  ''  );   print   (  operator  .  sub  (  a     b  ))   # using mul() to multiply two numbers   print   (  'The product of numbers is :'    end  =  ''  );   print   (  operator  .  mul  (  a     b  ))   
Output:
The addition of numbers is:7 The difference of numbers is :1 The product of numbers is:12  

4. truediv(ab) : - Bu işlev şunu döndürür: bölüm Verilen argümanlardan. Operasyon - a / b. 5. kat div(ab) :- Bu fonksiyon aynı zamanda verilen argümanların bölünmesini de döndürür. Ancak değer taban değeridir, yani. en büyük küçük tam sayıyı döndürür . Operasyon - a // b. 6.pow(ab) : - Bu işlev şunu döndürür: üs alma Verilen argümanlardan. Operasyon - a ** b. 7. mod(ab) : - Bu işlev şunu döndürür: modül Verilen argümanlardan. Operasyon - % b. Python
   # Python code to demonstrate working of    # truediv() floordiv() pow() mod()   # importing operator module    import   operator   # Initializing variables   a   =   5   b   =   2   # using truediv() to divide two numbers   print   (  'The true division of numbers is : '    end  =  ''  );   print   (  operator  .  truediv  (  a    b  ))   # using floordiv() to divide two numbers   print   (  'The floor division of numbers is : '    end  =  ''  );   print   (  operator  .  floordiv  (  a    b  ))   # using pow() to exponentiate two numbers   print   (  'The exponentiation of numbers is : '    end  =  ''  );   print   (  operator  .  pow  (  a    b  ))   # using mod() to take modulus of two numbers   print   (  'The modulus of numbers is : '    end  =  ''  );   print   (  operator  .  mod  (  a    b  ))   
Output:
The true division of numbers is: 2.5 The floor division of numbers is: 2 The exponentiation of numbers is: 25 The modulus of numbers is: 1  

8. lt(a b) : - Bu işlev şunun için kullanılır: a'nın b'den küçük olup olmadığını kontrol edin . a, b'den küçükse true değerini döndürür, aksi takdirde false değerini döndürür. Operasyon - A < b . 9.(a b) : - Bu işlev şunun için kullanılır: a'nın b'den küçük veya ona eşit olup olmadığını kontrol edin . a, b'den küçük veya ona eşitse true değerini döndürür, aksi halde false değerini döndürür. Operasyon - A <= b . 10. denklem(a b) : - Bu işlev şunun için kullanılır: a'nın b'ye eşit olup olmadığını kontrol edin . a, b'ye eşitse true değerini döndürür, aksi takdirde false değerini döndürür. Operasyon - bir == b . Python
   # Python code to demonstrate working of    # lt() le() and eq()   # importing operator module    import   operator   # Initializing variables   a   =   3   b   =   3   # using lt() to check if a is less than b   if  (  operator  .  lt  (  a    b  )):   print   (  '3 is less than 3'  )   else   :   print   (  '3 is not less than 3'  )   # using le() to check if a is less than or equal to b   if  (  operator  .  le  (  a    b  )):   print   (  '3 is less than or equal to 3'  )   else   :   print   (  '3 is not less than or equal to 3'  )   # using eq() to check if a is equal to b   if   (  operator  .  eq  (  a    b  )):   print   (  '3 is equal to 3'  )   else   :   print   (  '3 is not equal to 3'  )   
Output:
3 is not less than 3 3 is less than or equal to 3 3 is equal to 3  

11.gt(ab) : - Bu işlev şunun için kullanılır: a'nın b'den büyük olup olmadığını kontrol edin . a, b'den büyükse true değerini döndürür, aksi takdirde false değerini döndürür. Operasyon - a > b . 12. ge(ab) : - Bu işlev şunun için kullanılır: a'nın b'den büyük veya eşit olup olmadığını kontrol edin . a, b'den büyük veya ona eşitse true değerini döndürür, aksi halde false değerini döndürür. Operasyon - a >= b . 13.ne(ab) : - Bu işlev şunun için kullanılır: a'nın b'ye eşit olup olmadığını veya eşit olup olmadığını kontrol edin . a, b'ye eşit değilse true değerini döndürür, aksi takdirde false değerini döndürür. Operasyon - a != b . Python
   # Python code to demonstrate working of    # gt() ge() and ne()   # importing operator module    import   operator   # Initializing variables   a   =   4   b   =   3   # using gt() to check if a is greater than b   if   (  operator  .  gt  (  a    b  )):   print   (  '4 is greater than 3'  )   else   :   print   (  '4 is not greater than 3'  )   # using ge() to check if a is greater than or equal to b   if   (  operator  .  ge  (  a    b  )):   print   (  '4 is greater than or equal to 3'  )   else   :   print   (  '4 is not greater than or equal to 3'  )   # using ne() to check if a is not equal to b   if   (  operator  .  ne  (  a    b  )):   print   (  '4 is not equal to 3'  )   else   :   print   (  '4 is equal to 3'  )   
Output:
4 is greater than 3 4 is greater than or equal to 3 4 is not equal to 3