new to GUI creation with python, I have the following code, how can I make the print command appear on the GUI not the command line? I’m wanting to show the print in the GUI as a text box or some kind …
new to GUI creation with python, I have the following code, how can I make the print command appear on the GUI not the command line? I’m wanting to show the print in the GUI as a text box or some kind …
I want to create 20 input boxes in tkinter each holding an element of information from a list, I cannot work out how to loop through each input box displaying a new piece of data from the list. The …
I am new to tkinter and I am trying to make a tabbed page however I am struggling to move the labels around. They dont seem to be listening to the rows and columns I enter completely. They move to a …
I need to remove text from canvas after some time. y = cnv3.create_text(600, 430, text=’Authentication failed’, font=(‘Times’, 30), fill=’yellow’) I tried this: time.sleep(2) cnv3.pack_forget(y) …
I’m working on a webscraping code, and the process is quite long. Thus, I would like to start and stop it in a fancy way, with a button using tkinter. But I couldn’t find any solution on the web. The …
So I was making a chat gui for my tcp chat and I wanted to use a scrollbar so you would be able to see the messages no matter how long the messages got. So I was testing somethings and got it to work …
def sb(loop): asyncio.set_event_loop(loop) token = e.get() client = commands.Bot(command_prefix=”=”, help_command=None, self_bot=True) @client.command(…
So the question title pretty much sums it up. I apologise in advance if I have too much information as I don’t know exactly where the problem arises but the issue is in the transition between class …
hi am new to python and i have created a very simple encryption code and a simple gui with tkinter but i cant seem to ‘connect’ them together i tried so hard but i need help right now def machine(): …
for i, item in enumerate(Tehdit, 1): if i < 26: lbl = Label(project, text=f"{i}. {item}", font="Arial 10") lbl.place(x=0, rely=0.22 + ((i-1) * 0….