Hey guys kow can i make a window ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Hey guys kow can i make a window ?

Guys i wonna open window for a game like snake game and put button

2nd Jul 2020, 7:54 AM
Sami Khb
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()
2nd Jul 2020, 8:10 AM
Tomiwa Joseph
Tomiwa Joseph - avatar
+ 1
There are other GUI app out there so... you are not limited to just these two😀😀
2nd Jul 2020, 8:12 AM
Tomiwa Joseph
Tomiwa Joseph - avatar
+ 1
Thanks
2nd Jul 2020, 8:20 AM
Sami Khb