Answers for "create a gui with python input and output"

2

python gui capture user input

import tkinter as tk
from tkinter import simpledialog

ROOT = tk.Tk()

ROOT.withdraw()
# the input dialog
USER_INP = simpledialog.askstring(title="Test",
                                  prompt="What's your Name?:")

# check it out
print("Hello", USER_INP)
Posted by: Guest on October-04-2020

Code answers related to "create a gui with python input and output"

Python Answers by Framework

Browse Popular Code Answers by Language