1、在写Python通过IP代理访问网站的时候,报错如下:
proxy = random.choice(proxy_arr) # 随机选择一个代理
AttributeError: 'builtin_function_or_method' object has no attribute 'choice'
最好发现是因为开头是这样写的:
from random import random
2、解决办法
改成直接import random
import random
就能够正常运行。