i am using python 2.5.2. The following code not working.
def findValue(self, text, findText):
index = text.find(findText)
print index
Although the findText
is present in text
, but it still returns None
.
I have printed the values of text
and findText
and they are present.
Edit: I have fixed the issue.
The problem was i am calling code like
for i in arr:
self.findValue(i,"someText")
As type of i
is instance
so this does not work. I have just changed it to:
self.findValue(str(i),"someText")