1. 程式人生 > >Python 2.X 下,比較兩個字串是否相同

Python 2.X 下,比較兩個字串是否相同

在實際操作中,將一個dict資料型別中的值,與從Excel表中提取的一系列資料進行比較,看dict中的資料是否與Excel匹配。可能會遇到如下問題:

UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal

出現這個錯誤後,字串無法正確匹配,便會出現找不到匹配項的結果。

部分相關程式碼為:

<p><span style="font-size:18px;">import  xlrd</span></p><p></p><p style="margin-top: 0px; margin-bottom: 0px;"><span style="font-size:18px;">bk=xlrd.open_workbook(str_file)</span></p><p style="margin-top: 0px; margin-bottom: 0px;"><span style="font-size:18px;">sh=bk.sheet_by_index(0)</span></p><p style="margin-top: 0px; margin-bottom: 0px;"><span style="font-size:18px;">n=sh.nrows</span></p>
<span style="font-size:18px;">flag=0
for i in range(n):
    str1=sh.row(i)[0].value
    str2=sh.row(i)[1].value
    if(dict1['no']==str1):
        if(dict1['name']==str2):
            print "Your input 'no':%s,'name':'%s' is right." %(dict1['no'],dict1['name'])
            flag=1</span>
<span style="font-size:18px;">if(flag==0):
    print "Your input 'no':%s is not exist." % dict1['no']</span>
經過查詢原因,發現是字串型別不匹配。

type(dict1['name']是str,而type(str1)是unicode。

解決辦法為:

<span style="font-size:18px;"> if(dict1['no']==str1):
        if(dict1['name']==str2):</span>

改為

<span style="font-size:18px;"> if(dict1['no']==str1.encode('utf8')):
        if(dict1['name']==str2.encode('utf8')):</span>
即可解決字串轉換問題。將unicode碼轉換成utf8。

該解決方法在本人實際操作中驗證可行。僅供參考。