“Gui def Python” Kod odpowiedzi

Python Gui

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

Gui def Python

# main library is tkinter so lets go
import tkinter as tk
root = tk.Tk()
#root.geometry("widthxheight+spcefromleft+spacefromright") lets set h and w
root.geometry("500x200+0+0")
# loop your window 
root.mainloop()
MrprogRammer75

GUI w Python

import pygame
pygame.init()
W, H = 900, 500
WIN = pygame.display.set_mode((W, H))
run = True
while run:
  for event in pygame.event.get():
    if event.type == pygame.QUIT:
      run = False
pygame.quit()
Nice Nightingale

Odpowiedzi podobne do “Gui def Python”

Pytania podobne do “Gui def Python”

Więcej pokrewnych odpowiedzi na “Gui def Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu