Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Is it possible to pass comparison operators as parameters into functions?

Is there a way to specify the function in the if condition in the arguments to a function? For example, I want to be able to do something like this:

a = int(input('number between 0 and 5'))
b = >=
def fun1(a, b):
    if a b 0:
        print('...')

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

Yes, you can use methods from the operator library if you want to use the comparision operator as a parameter to a function — in this case, you’re looking for operator.ge:

import operator
a = int(input('number between 0 and 5'))
b = operator.ge

def fun1(a, b):
    if b(a, 0):
        print('...')
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading