変数の数学演算子を if ステートメントに挿入しようとしています。これは、ユーザーが指定した数式を解析する際に達成しようとしているものの例です。
maths_operator = "=="
if "test" maths_operator "test":
print "match found"
maths_operator = "!="
if "test" maths_operator "test":
print "match found"
else:
print "match not found"
明らかに上記は で失敗しSyntaxError: invalid syntax
ます。exec と eval を使用してみましたが、どちらも if ステートメントでは機能しません。これを回避するにはどのようなオプションが必要ですか?