mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
17 lines
367 B
Python
Executable File
17 lines
367 B
Python
Executable File
import random
|
|
import tkinter as tk
|
|
|
|
def roll():
|
|
lbl_result["text"] = str(random.randint(1, 6))
|
|
|
|
window = tk.Tk()
|
|
window.columnconfigure(0, minsize=150)
|
|
window.rowconfigure([0, 1], minsize=50)
|
|
|
|
btn_roll = tk.Button(text="Roll", command=roll)
|
|
lbl_result = tk.Label()
|
|
|
|
btn_roll.grid(row=0, column=0, sticky="nsew")
|
|
lbl_result.grid(row=1, column=0)
|
|
|
|
window.mainloop() |