new = list() a = ['1', '2', '3'] for x in a: new.append(int(x)) print(new)
Related Posts
爬虫aiohttp请求库讲解之高效率下载
aiohttp是asyncio和Python的异步HTTP客户端/服务器。 爬虫常用的是HTTP客户端,跟re […]
DeprecationWarning: use options instead of chrome_options driver = webdriver.Chrome(chrome_options=chrome_options)
使用selenium进行获取一些数据时,运行时一直报警告:‘DeprecationWarning: use o […]
添加环境变量后webdriver.Chrome()仍然无法使用
最后在百度上搜各位大哥们出错,最后在一个前辈出错过程中找到了答案 将chromedriver放到了python […]