All Questions
22
questions
5
votes
1answer
175 views
Arabic language lesson program
The program I have been working on has been developed almost exclusively as "train-of-thought" style code. Things happen linearly (for the most part) thru the code. The goal of the program is to house ...
2
votes
2answers
187 views
Digitizing paper label system with Python
I'm currently halfway through a Python project, but would like a review before I spend too much more time on this to avoid going too far down a rabbit hole.
I had previously wanted to use HTML, CSS, ...
5
votes
1answer
175 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 ...
7
votes
2answers
4k views
Very Ugly Tkinter Calculator
I have been working for about a week on a calculator in Tkinter, and the result is a very ugly, but functional calculator. Is it possible to clean up the code, and make it more readable?
...
3
votes
0answers
303 views
Double pendulum real time plot
Double Pendulum
I made a little application that embeds a matplotlib dynamic plot into tkinter that enables control through the ...
4
votes
2answers
1k views
Temperature value converter
I'm trying to improve my programming skills (not just using one language). I don't have a group of other programmers to bounce ideas off other than on the web - so please forgive me if I have posted ...
3
votes
1answer
219 views
Linux/Windows Text Editor in Tkinter
Over the past couple of days I have been working on a super-basic text editor with Tkinter.
It can:
Open new files
Open files (general)
Save files
Obviously you can edit any file you open or make. ...
1
vote
4answers
6k views
10
votes
3answers
918 views
Simple word shuffling game
I have made a game (I like to code when in my spare time) where words are taken at random from a list and displayed on a label. If they type it correctly, their ...
8
votes
1answer
6k views
Tkinter 1 Player Tetris game
README.md
Tetris game
I am working towards making a Tetris game where you can challenge an AI. Multiple parts have been finished, but a lot is still under construction. However I would like an ...
6
votes
2answers
3k views
Conway's Game Of Life in Python 3 using tkinter
I have used tkinter in Python 3 to create my own version of Conway's Game of Life.
What could I do better in terms of optimisation of speed and memory and PEP8 and cleaning up my code? Also, what can ...
6
votes
2answers
319 views
Calculator in Python 3 using Tkinter
Edit: New version at Python 3 Tkinter Calculator - follow-up
New status: I´ve refactored the code trying to follow the recommendations from the guys who answered this question. The new version is on ...
5
votes
2answers
162 views
Paper label system in Python
Update from Digitizing paper label system with Python
I have implemented a username and password log in and main application to be used after successful log in.
I am ready for some more feedback.
...
4
votes
3answers
7k views
Basic text editor in Python with Tkinter
I have finished writing my nice and little text editor in Python with Tkinter.
I tried to achieve the best user experience that I could.
I want this code to be 2/3 compatible, I tested it in both ...
4
votes
1answer
7k views
Making a list from user input
I have wrote a program that lets the user open up their text file that would look something like this:
1
2
3
4
5
6
It would then let the user enter a name for ...
3
votes
1answer
76 views
“Did I slap the Jack? Or get slapped back?” (tkInter learning project)
I wrote a very simple slapjack program as:
A reintroduction to what little Python I ever knew
A chance to tinker with tkinter
My first foray into an event-based project
Most of my experience is ...
3
votes
1answer
40 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 ...
3
votes
1answer
3k views
Display a simulation using Tkinter
I wrote a module to simulate physics of 2D elastic balls and the community helped me to improve it on this post.
Now I implemented a GUI using Tkinter to display the simulation in a window.
I'm a ...
3
votes
2answers
281 views
Tkinter program to teach Arabic
I am writing a lesson-based program to help teach friends and family the basics of Arabic. The program consists of different sections (letters, numbers, personnel pronouns, etc.) and each of those ...
2
votes
0answers
23 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 ...
2
votes
1answer
1k views
Tic Tac Toe game in Python 3.X using tkinter UI
I am learning to program in Python and as my first project I decided to create a simple Tic Tac Toe game. The game is working properly now and I am wondering if there is anything I could do to improve ...
1
vote
0answers
169 views
Python 3 Tkinter Calculator - follow-up
I'm a beginner developer, and it's my very first project: a simple math operations calculator in Python 3 using Tkinter for GUI.
Obs: This code is an evolution of my previous code of the same project:...