From Gui Import * In Python 3?
I'm trying this: import os, sys from Gui import * import Image as PIL import ImageTk class ImageBrowser(Gui): def __init__(self): Gui.__init__(self) self.but
Solution 1:
If you are talking about the Gui module that comes with Swampy, then
in order to use Gui
with Python3, you'll need to install the Python3 version of Swampy.
Post a Comment for "From Gui Import * In Python 3?"