我尝试用俄文符号打开页面。
webbrowser.open('https://www.google.com/?q=привет')
但我在浏览器中有这个:https://www.google.com/?q= ??????
答案 0 :(得分:1)
使用unicode字符串。
webbrowser.open(u'https://www.google.com/?q=привет')
您可能还想对源文件使用UTF-8编码,因此请确保您的编辑器实际保存为UTF-8并将其添加到程序的顶部
# -*- coding: utf-8 -*-