2014年7月3日 星期四

Python string to operator

import operator

ops = {
    "+": operator.add,
    "-": operator.sub,
    ">=": operator.ge,
    "<=": operator.le
}

print ops[">="](2, 1)
print ops["<="](2, 1)




References :
Python:: Turn string into operator - Stack Overflow

沒有留言:

張貼留言