I'm trying to create a tkinter GUI that presents the 10 processes that are taking up the cpu, refreshing it every 2 seconds, similar to top, on the linux comman
I'm coding a brainfuck compiler and im having trouble updating the text color, as I want different symbols to have a different color depending on what they are.
I have programmed an App with Tkinter on Python, that reads out a number of consecutive XML-protocols of a (literary) writing process and visualizes the same pr
So I have a class that just creates a gui with a text box to type into. I would like to store multiple of these objects and their content that is entered by the
I am making a restaurant menu program that pulls items and their attributes from a .json file, and then allows users to add them to a cart and export an order (
from tkinter import * class ticTactoe: def __init__(self): self.root=Tk() self.root.title("Tic Tac Toe") self.num=-1 for i
I want to make 5 buttons in a loop, and for each buttons bind a commend to print the index. In the following solution it always prints the same index. My code
In order to ensure that my program will be compatible with any screen size, I first have a very small 'setup' window open when the program is launched, which wi
There are 3 piles (1 pile - 7 matches, 2 pile - 5 matches, 3 pile - 3 matches) you can take any number of matches, but only from one pile, the
It runs, the TK design is fine but the generated code is limited to one type. What it currently does when it runs is pops up a window with (copy and Generate) b
This code works: import tkinter root = tkinter.Tk() canvas = tkinter.Canvas(root) canvas.grid(row = 0, column = 0) photo = tkinter.PhotoImage(file = './test.g
I get the pictures from the wikipedia in a class and add them to the dict, when I want to return it and add the result to the label image, I get an error import
I am creating a GUI using tkinter in python and I want to print the date of what the user had selected using dateEntry. Here is what my code looks like: import
I'm trying to update the firstname field in my SQLite3 database, I tried using exception to get this error but couldn't still fix it. This is the code: conne =
I want to add two numbers and add them and update the result instantly without using a button. I have written this code using after() to do that. from tkinter i
I am trying to make a timesheet where every employee times in in the morning and times out at the end of the day. It is going well so far but, I the Why is the
I am doing a quiz game and after I want to pass a page and load new question and options and the options won't change. I am using the wait_variable() method and
I coded a snake game and whenever you hit your own body, a message box should show up asking u to play again. However, when I do hit the body, my python pygame
I am using the following code but cant seem to get a help-menu in the actual window. Can you see anything in terms of menu when you run the code ? I have tried
while cropping an image with pillow/PIL, i got the following Error: ValueError: Coordinate 'right' is less than 'left' I am not able to resolve why cropping l