这是2.x转3.x问题

  2.x写法:

from urlparse import urlparse

 

 

 

   3.x写法:

from urllib.parse import urlparse

 

 

 

问题解决。

相关文章: