我想使用一个字符串,比如"="或">quot;作为if语句的比较器。例如:
comparator = ">="
if y comparator x:
print("hello world")
我想要
if y >= x:
print("hello world")
您可以使用eval将字符串转换为代码:
comparator = ">="
if eval(f"{x}{comparator}{y}"):
print("hello world")