Kod
anoya kopyala
Read more
Kod:
import tkinter as tk
import random as rd
from PIL import ImageTk, Image
image=Image.open("C:\Users\Ziya\Desktop\ppj.jpg")
photo = ImageTk.PhotoImage(image)
l1=Label(window , image = photo)
l1.place(x=0, y=0)
def guess():
a = rd.randint(0, 5)
b = rd.randint(0, 5)
result.config(text=f"Team 1: {a}, Team 2: {b}")
window = tk.Tk()
window.geometry("800x600+50+100")
window.title('Correct Score')
window.image_names
write = tk.Label(window, text='Welcome', fg='blue', bg='green'...
Read more
