概述
python3 如何将list列表中循环输出中文正常显示
from selenium import webdriver
from time import sleep
driver = webdriver.Firefox()
list = [“疫情”,“demo”,“1”]
driver.get(“https://www.baidu.com/”)
for i in list:
i=i.decode(‘utf-8’)
driver.find_element_by_xpath(’//*[@id=“kw”]’).clear()
driver.find_element_by_id(‘kw’).send_keys(i)
sleep(1)
driver.find_element_by_id(‘su’).click()
sleep(1)
driver.quit()
不写decode(‘utf-8’) 就会报错UnicodeDecodeError: ‘utf8’ codec can’t decode byte 0xe7 in position 0: unexpected end of data 错误显示;
最后
以上就是美好音响为你收集整理的python3 如何将list列表中循环输出中文正常显示的全部内容,希望文章能够帮你解决python3 如何将list列表中循环输出中文正常显示所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复