+ 2
Simple gui interference
Can someone post a simple code with a gui interference so that I can learn from it . please? +I DON'T KNOW HOW TO DO IT
4 odpowiedzi
+ 3
Google = "tkinter module"
In python3
from Tkinter import *
#Root window
root = Tk()
#Title bar
root.title("Simple GUI")
#Root Dimensions
root.geometry("200x100")
+ 2
Hi please have a look at the below link. It will help you
http://physicalmodelingwithpython.blogspot.in/2016/04/make-your-own-gui-with-JUMP_LINK__&&__python__&&__JUMP_LINK.html?m=1
+ 1
can you provide it in html too?
0
And thanks for your response