From: Florian R. <flo...@gm...> - 2015-09-20 16:04:04
|
Hello everyone, few days i'm getting troubles around my Python3 script when trying to build an exe. I can't have french accents displayed, see the example here: import tkinter as tk from tkinter import * root = tk.Tk() li = 'André Patrick Lindsay Helmut Chris Gwen'.split() listb = Listbox(root) for item in li: listb.insert(0,item) listb.pack() root.mainloop() Thanks for your help... |