0
Hey guys kow can i make a window ?
Guys i wonna open window for a game like snake game and put button
3 Answers
+ 1
You could use Pygame or Tkinter.
Which is up to you but I would recommend Tkinter because it is very very beginner friendly and it comes pre-installed with python.
You could make a button in just 4 lines:
from tkinter import *
root = Tk()
Button(root,text='i love python').pack()
root.mainloop() # or mainloop()
+ 1
There are other GUI app out there so... you are not limited to just these twođđ
+ 1
Thanks