コード:
import urllib,urllib2
url = 'http://www.pythonchallenge.com/pc/def/linkedlist.php'
print urllib2.urlopen(url).read()
print urllib2.urlopen(url,urllib.urlencode({'nothing':12345})).read()
私が遭遇する質問は、2つの「印刷」が同じコンテンツを出力する理由です。私のコードのどこに問題がありますか?