Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to create a multiline entry with Tkinter?
Let us suppose that we want to create an Entry widget that supports multiline user input. In order to create a multiline Entry widget, we can use Text() constructor.
Example
Here, in this example, we will create a window that contains a multiline Entry widget.
#Import the library
from tkinter import *
#Create an object of tkinter window or frame
win = Tk()
#Define the geometry of window
win.geometry("650x250")
#Create an instance of Text Widget
text = Text(win)
text.pack()
win.mainloop()
Output
Running the above code will display a window with a text widget that supports multiline user Input.

Advertisements