此问题在此处已有答案:
no module named urllib.parse (How should I install it?)(12个答案)
5年前关闭。
我想使用urlparse
,但Python 3找不到该模块。
我做import urlparse
,但它给我这个错误
ImportError: no 'module' named urlparse
此问题在此处已有答案:
no module named urllib.parse (How should I install it?)(12个答案)
5年前关闭。
我想使用urlparse
,但Python 3找不到该模块。
我做import urlparse
,但它给我这个错误
ImportError: no 'module' named urlparse
2条答案
按热度按时间6ss1mwsb1#
Python2.7.11中的urlparse在Python3中被重命名为urllib.parse。
blmhpbnm2#
如
urlparse
's documentation中所述:注意Python 3中
urlparse
模块重命名为urllib.parse
,在将源代码转换到Python 3时,2to3工具会自动适配导入。也就是说,只需使用
urllib.parse
: