嗨聲明,我試圖插入一個變量的數學運算符成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語句中工作,我有什麼辦法可以解決這個問題?
完美!感謝Nathan一個非常好的例子 – Paul 2012-08-07 14:05:14