I wrote code like this:
>>> import re
>>> url='<a href="C:\python34\koala.jpg">jpg</a><font size="10">'
>>> print(re.findall('href="(.*?)"><',url))
I except result
C:\python34\koala.jpg">jpg</a
But I can see only this result :
[]
why is this happening?
I did not know why I have this result in console.
Please help me.
I am using python 3.4 and windows8.1.