<div dir="ltr"><div>MOn Tue, Nov 19, 2013 at 10:35 AM, Jai</div><div><<a href="mailto:jaiprakashsingh213@gmail.com">jaiprakashsingh213@gmail.com</a>> wrote:</div><div>> please help what is this i have try lot but unable to remove it</div>
<div><br></div><div>Your code is getting into an infinite loop.</div><div><br></div><div>One problem is, I suspect:</div><div><br></div><div>> def find_position(line):</div><div>>     pun = ""</div><div>>     if re.search(r"[.?!]+", line):</div>
<div>>         pun = re.search(r"[.?!]+", line).group()</div><div>>     pos = line.find(pun)</div><div>>     pos = pos+len(pun)-1</div><div>>     return pos</div><div><br></div><div>When your search fails, this function will return 0. Fix that.</div>
<div><br></div><div>In general your problem isn't well defined enough for me to make</div><div>sense of your algorithm. Can you show sample input and output?</div><div>Can you describe the algorithm in plain English?</div>
<div><br></div><div>-- </div><div>Neil Cerutti</div></div>