Recent content by ZykBee

  1. ZykBee

    Can someone please help me with this?

    (nevermind. Got it. - content = self.text.get(0.1, END).strip() - if anyone sees in future.
  2. ZykBee

    Issue with simple python program

    Thank you! What I wound up doing was placing .strip() on the end of a content = line. I appreciate the help!
  3. ZykBee

    Can someone please help me with this?

    I can't get it to print 'congrats' when I type "password" in the window. I'm pretty sure the issue is in the "content =self.text.get()" line, but I I haven't an idea what it should be. Any ideas? <<< from tkinter import * class Application(Frame): def __init__(self, master)...
  4. ZykBee

    Issue with simple python program

    Can anyone possibly show me how to switch this exact code to print to a textbox instead of to the shell?<<< from tkinter import * root = Tk() root.geometry("500x500") def retrieve_input(): inputValue = textBox.get("1.0","end-1c") if inputValue == "test": print("yes") else...
Back
Top