Dynamic comparison operators
Paul Rubin
no.email at nospam.invalid
Thu May 24 21:36:57 EDT 2012
More information about the Python-list mailing list
Thu May 24 21:36:57 EDT 2012
- Previous message (by thread): Dynamic comparison operators
- Next message (by thread): Czy dysponujesz dwoma wolnymi godzinami w tygodniu? Oto jak zarobc 185 EUR w tym czasie.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
mlangenhoven at gmail.com writes: > I would like to pass something like this into a function > test(val1,val2,'>=') > > and it should come back with True or False. import operator test(val1, val2, operator.ge)
- Previous message (by thread): Dynamic comparison operators
- Next message (by thread): Czy dysponujesz dwoma wolnymi godzinami w tygodniu? Oto jak zarobc 185 EUR w tym czasie.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list