please to see my code: <br>import urllib<br>import urllib2<br><br>url = 'http://hi.baidu.com/'<br>values = {'username' : '******','password' : '******' }<br><br>data = urllib.urlencode(values)<br>req = urllib2.Request(url,data)<br>response = urllib2.urlopen(req)<br>the_page = response.read()<br><br>i can't to login ,why?username and password  are  right.<br>any word  appreciated.<br>