All Questions
12 questions
6
votes
2
answers
446
views
Animal Storage TreeView - Tkinter
Bit of a pointless program (at the moment). It's intended more as practice for myself rather than anything else.
General idea is that you add details of a particular cat or dog, and it'll update a ...
1
vote
0
answers
159
views
A Tabbed calculator in python with tkinter
For learning purposes, I have written a small calculator app on Python, tkinter.
I want to check if my design is on best practices for OOP, And seek advice on Nested functions
For easy readability, I ...
2
votes
0
answers
29
views
Plotting Whether Measured Locations for Components are Within Spec - follow-up
I've made this GUI program for my workplace that checks whether measured coordinates on machined components are within spec.
It takes in specified coordinates, tolerance and measured coordinates and ...
3
votes
1
answer
61
views
Plotting Whether Measured Locations for Components are Within Spec
I've made this GUI program for my workplace that checks whether measured coordinates on machined components are within spec.
It takes in specified coordinates, tolerance and measured coordinates and ...
2
votes
1
answer
6k
views
Python tkinter Snake
I have made a little Snake game with Python tkinter. It's my first Python program with one GUI. What can I improve?
...
5
votes
1
answer
190
views
Arabic language lesson program Part 2
This is the second time I am asking for a review of this code (first time can be found here: Arabic language lesson program). The goal of the program hasn't changed - to house Arabic language lessons ...
3
votes
0
answers
830
views
OOP Othello in Python with tkinter UI and basic AI
I wrote an Othello version with limited UI to try to learn python(3.7) and OOP.
The game has 8 classes.
Start creates a controller object which is responsible for the logical flow of the game. ...
4
votes
1
answer
6k
views
Basic File Browse
Below is a Browse class that lets the user browse files and show the path in an entry frame. This is pretty short and basic.
...
5
votes
1
answer
1k
views
Checkered flag: a modular usage of Tkinter's geometry management
This is code that produces a checkered flag-like GUI. I wanted to demonstrate, also learn in detail, how tkinter's geometry managers can be used modularly, so I decided that I could write code for a ...
2
votes
2
answers
2k
views
Subclass Tkinter Widgets to save typing
I am doing a small GUI program for a practice exercise and in order to save myself some typing I took it upon myself to subclass some Tkinter widgets so I can pass the grid placement in the ...
2
votes
1
answer
5k
views
Simple tkinter GUI that uses a popup menu class
I'm new to OOP and not sure if I'm importing and using my class correctly.
I'm writing a simple app called MyTestApp that uses a tkinter GUI.
I have a textbox widget and I created a popup menu that ...
1
vote
1
answer
1k
views
Creating and calling objects sequentially in Tkinter with Python 3
I am trying to build a very simple user interface in Python 3 using Tkinter to be used in windows. and have written a code which is not efficient - it is excessively long for no good reason. I am ...