我在 eventghost 中的 python 脚本有问题:eg.globals.test
是一个外部变量
eg.globals.test = "test♥.png"
我的脚本:
Import Image
print eg.globals.test
#test♥.png
picture = Image.open(eg.globals.test)
# IOError: [Errno 2] No such file or directory: test \u2665.png'
Python 将 ♥ 转换为\u2665.png
. 我尝试过编码、解码、unicode 函数,但没有效果。