私はこのコードをデバッグしてきましたが、==
一致する 2 つの文字列に対して演算子を機能させることができませんでした。
コード:
str1 = "string1"
str2 = "string2"
print str1
print str2
for row in results:
print row[0]
print row[1] #as requested
if((row[0] == str1) and (row[1] == str2)):
print "We found the match....."
#rest of the code