66 questions
If you press the + button, the number increases and if you press the reset button, the Python gui code is initialized, but I don't know why there is no change even if I press the button. Can't it be a...
The code is as follows:from tkinter import *import randomwindow = Tk()button_list=['Rock', 'Paper', 'Scissors']RockImage=PhotoImage(file=rock.png)PaperImage=PhotoImage(file=paper.png)ScissorImage=Phot...
If you click the button with the TKINTER GUI, the current time is printed, but the button is not printed in the 23rd and 3rd positions.There are no errors.What's the problem?from datetime import datet...
from tkinter import *import matplotlib.pyplot as pltwin = Tk()win.geometry(1024x576)win.title(Minecraft bukkit)win.option_add(*Font, NotoSansKR-Medium 20)ent = Entry(win)ent.insert (0Enter server to f...
I have about 5 coupons here and I'd like to make a coupon, would you like to use it? If I press cancel, I want to go back to the first screen, but I don't know what to do What should I do with that?fr...
import random as rddef lottery_number(): num = int(number.get()) for i in range(num): lotto_list = list(range(1,46)) #from 1 to 45 rd.shuffle(lotto_list) #shuffle lotto_list1 = lotto_list[:6] lot...
I'm sorry to attach the picture.I made a calculator using tkinterRun and enter a value.AttributeError: 'NoneType' object has no attribute 'configure'An error appears. I think there is a problem with ....
Hello.I'm a beginner who is studying Python.I'm just making a program that takes a simple screen shot using Python Tkinter.I'm asking the seniors like this because there's a stop phenomenon with the f...
When I type in entry, I want to delete the existing contents when I click entry, what should I do?I know you can erase it with Entry.configure() or with Entry.delete(0, END)I don't know how to make it...
i = 0for f in range(len(machh)): globals()['button{}'.format(f)] = tkinter.Button(frame, command = lambda : self.Match_Deep_Search(f) ) # Create buttons as large as the list def Match_Deep_Sea...
« | - 6 - | » |
© 2024 OneMinuteCode. All rights reserved.