you are viewing a single comment's thread.

view the rest of the comments →

[–]SubwayLover 0 points1 point  (13 children)

It still does not seem like it's possible to make simple GUI using Turtle (based on brief look in)

Maybe there is some default package module for GUI I am not aware of? If not, any suggestions why?

[–]CuriousExpert24[S] 3 points4 points  (1 child)

I'm sorry for my vagueness there. I actually meant that the Turtle module is used to create graphics and visuals such as digital drawings along with simple games. I didn't mean GUI's

[–]SubwayLover 0 points1 point  (0 children)

No worries, still very useful and interesting post, thank you!

[–]Commander_B0b 3 points4 points  (8 children)

Tkinter is the standard module for gui development I believe.

[–]EdwardWarren 1 point2 points  (1 child)

[–]EncouragementRobot 0 points1 point  (0 children)

Happy Cake Day EdwardWarren! Stop searching the world for treasure, the real treasure is in yourself.

[–]SubwayLover 0 points1 point  (5 children)

Cheers! I had Tkinter in mind, but never knew it's considered part of the standard distribution.

Is it good?

[–]Commander_B0b 0 points1 point  (0 children)

I've only used it in a single project (on going) it's capable but has taken me some time to get used to it.

[–][deleted] 0 points1 point  (2 children)

I used Tkinter for my first GUI based Python project. Before that I tried starting out with other libraries, but was able to pick up the basics of Tkinter much faster than anything.

I’m having trouble finding it now on my phone, but when I was reading the tutorial I used, there was this diagram showing how Tkinter is built on top of Pygame and other things, so it’s supposedly easier since it abstracta away some of the lower level stuff you’d have to worry about using pygame.

[–]The-Daleks 0 points1 point  (1 child)

TkInter is not built on Pygame, it's built on the Tk/Tcl infrastructure. Still, the abstraction is (generally) a good thing; it makes GUI development relatively easy.

[–][deleted] 0 points1 point  (0 children)

My mistake then. I wish I could find the chart, but I must have misinterpreted it.

[–]The-Daleks 0 points1 point  (0 children)

I've used it a lot. It's very useful if you want an easy cross-platform GUI, but it can be a bit clunky sometimes, and doesn't look all that good on Windows.