我尝试使用关键字参数fromlist来模拟来自urllib import urlopen'。正确的方法是什么?希望得到你的帮助。
mymodule = __import__('urllib',fromlist=['urlopen'])
>>> urlopen('http://www.google.com')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'urlopen' is not defined