from tkinter import*
from random import randint

root = Tk()
root.title('Clicker')
root.geometry('900x600')
root.resizable(False, False)

img = PhotoImage(file='')
lbl = Label(root, image=img)

coord_x = randint(0, 29) * 30
coord_y = randint(0, 19) * 30
lbl.place(x=coord_x, y=coord_y)


root.mainloop()
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


More Questions From This User See All

Copyright © 2024 SCHOLAR.TIPS - All rights reserved.