Khi tôi cố gắng làm theo ví dụ của Python Wiki liên quan đến mã hóa URL:
>>> import urllib
>>> params = urllib.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0})
>>> f = urllib.urlopen("http://www.musi-cal.com/cgi-bin/query", params)
>>> print f.read()
Một lỗi được nêu ra trên dòng thứ hai:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'urlencode'
Tôi đang thiếu gì?
4
"2" trong URL của bạn.
—
Ignacio Vazquez-Abrams