是否可以将if
语句中的字符串解析为字符串?像
if "1 > 2":
print "1 is greater than 2"
但是被解析为
if 1 > 2:
print "1 is greater than 2"
这可能吗?这是一个程序吗?
答案 0 :(得分:3)
那是eval
的用途。
if eval("1 > 2"):
print "1 is greater than 2"
但要小心eval
。它将调用提供给它的任何函数。与os.system('rm -rf /')
:/
答案 1 :(得分:0)
如果您只是比较数值,这种方法一般会更安全。
这也可以用于非数值。
from operator import gt, ge, lt, le, eq, ne
def compare(expression):
parts = expression.split()
if len(parts) != 3:
raise Exception("Can only call this with 'A comparator B', like 1 > 2")
a, comp, b = parts
try:
a, b = float(a), float(b)
except:
raise Exception("Comparison only works for numerical values")
ops = {">": gt, '<': lt, '>=': ge, '<=': le, '==': eq, '!=': ne}
if comp not in ops:
raise Exception("Can only compare with %s" % (", ".join(ops)))
return ops.get(comp)(a, b)
def run_comp(expression):
try:
print("{} -> {}".format(expression, compare(expression)))
except Exception as e:
print str(e)
if __name__ == "__main__":
run_comp("1.0 > 2")
run_comp("2.0 > 2")
run_comp("2 >= 2")
run_comp("2 <= 1")
run_comp("5 == 5.0")
run_comp("5 <= 5.0")
run_comp("5 != 5.0")
run_comp("7 != 5.0")
run_comp("pig > orange")
run_comp("1 ! 2")
run_comp("1 >")
<强>输出强>
1.0 > 2 -> False
2.0 > 2 -> False
2 >= 2 -> True
2 <= 1 -> False
5 == 5.0 -> True
5 <= 5.0 -> True
5 != 5.0 -> False
7 != 5.0 -> True
Comparison only works for numerical values
Can only compare with >=, ==, <=, !=, <, >
Can only call this with 'A comparator B', like 1 > 2