import tkinter as tk
# Create the main window
root = tk.Tk()
root.title("Tkinter-GUI textbox Tutorial")
root.geometry("300x100")
# Create a multi-line input textbox
textbox = tk.Text(root, height=2, width=30)
textbox.pack(pady=10)
# Run the application
root.mainloop()