I am trying to make a simple programm with Python 3,that tries to open differnet pages from a wordlist and prints which are alive.Here is the code:<br>from urllib import request<br>fob=open(&#39;c:/passwords/pass.txt&#39;,&#39;r&#39;)
<br>x = fob.readlines()
<br>for i in x:
<br>    urllib.request.openurl(&#39;<a href="http://www.google.gr/">www.google.gr/</a>&#39; + i)<br><br>But it doesent work.Whats the problem?<br>