我想知道,xlrd的結果格式。Python Xlrd結果格式
看到代碼
>>> sh.cell_value(rowx=2, colx=1)
u'Adam Gilchrist xxxxxxxxxxxxxxxxxxxxx'
現在,當我嘗試運行res.search
>>> temp1=sh.cell_value(rowx=2, colx=1)
>>> x=re.search("Adam",'temp1')
>>> x.group()
Traceback (most recent call last):
File "<pyshell#58>", line 1, in <module>
x.group()
AttributeError: 'NoneType' object has no attribute 'group'
我什麼也沒得到。
- 首先,我想知道,結果是'u'是什麼。
sh.cell_value
返回的結果格式是什麼。它是整數,字符串等- 我們可以在它們上運行正則表達式嗎?
我的實現使用Unicode和普通字符串。 –
+1這是最好的答案。 –