"module" ไม่มีแอตทริบิวต์ "urlencode"


111

เมื่อฉันพยายามทำตามตัวอย่างของ Python Wikiที่เกี่ยวข้องกับการเข้ารหัส 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()

ข้อผิดพลาดเกิดขึ้นในบรรทัดที่สอง:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'urlencode'

ฉันขาดอะไรไป?


4
"2" ใน URL ของคุณ
Ignacio Vazquez-Abrams

คำตอบ:




3

คุณใช้เอกสาร Python 2 แต่เขียนโปรแกรมของคุณใน Python 3


มันเป็นแท็กในปัญหาของคุณและลิงก์ชี้ไปที่เอกสาร Python 2
Malik Brahimi
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.