“Marco de GUI de Python” Código de respuesta

GUI de Python

import tkinter as tk
#Importing the main module
window = tk.Tk()
window.mainloop()
Outstanding Ox

GUI de Python

'''
Different modules exists, from the simpliest to the most complete.
By order I would (subjectively) recommand
- Tkinter | simple, allows to do small board games. Quite good
          | to begin with GUIs
          
- pysimplegui | a little bit more complete, allows to manipulate more
              | easily events, objects and layout
              
- PyQt5 | One the most complete. Using the Qt technology, this allows
        | to build complex and conventionnal GUI. Quite hard to master
        | requires to be at ease with classes, layouts and events
'''
Chall3nger

gui pitón

from tkinter import *

root = Tk()

myLabel = Label(root, text = "Any text")

myLabel.pack()

root.mainloop()
Mushy Mink

Marco de GUI de Python

from tkinter import *
 
class Root(Tk):
    def __init__(self):
        super(Root,self).__init__()
 
        self.title("Python Tkinter")
        self.minsize(500,400)
 
root = Root()
root.mainloop()
GFr

¿Qué es GUI en Python?

python easygui.py
Youhad Ayoub

Respuestas similares a “Marco de GUI de Python”

Preguntas similares a “Marco de GUI de Python”

Más respuestas relacionadas con “Marco de GUI de Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código