About 1,180,000 results
Open links in new tab
  1. Python Tkinter – Text Widget - GeeksforGeeks

    Aug 21, 2024 · Tkinter is a GUI (Graphical User Interface) module which is widely used to create GUI applications. It comes along with the Python itself. Entry widgets are used to get the entry …

  2. How to create a window with Python - Stack Overflow

    Jan 4, 2017 · The tkinter module is probably the most common Python GUI method. To make a button: from tkinter import * tk = Tk() btn = Button(tk, text="a clickable button", command()) …

  3. Create Python GUI with Tkinter

    Jun 14, 2022 · In this tutorial, we'll get started making our own window, or graphical user interface (GUI), using Tkinter and Python. A rough idea of what a GUI could look like: Example Desktop …

  4. Tkinter Text - Python Tutorial

    To create a text widget, you follow these steps: First, import tkinter as tk: import tkinter as tk Code language: JavaScript (javascript) Second, create a new Text widget using the Text() …

  5. Create a Text Editor in Python

    Here you create your own Text Editor using the Tkinter, OS, and modules in Python. This is a very simple project, but with the power of programming, you can even make this better and possibly …

  6. How to Create a Text Box in Python Tkinter? - Python Guides

    Feb 3, 2025 · Learn how to create a text box in Python Tkinter using the `Text` and `Entry` widgets, configure styles, and handle user input. This guide includes examples.

  7. Creating a Text Editor with Tkinter: From Basic to Advanced

    Oct 8, 2024 · In this blog post, we will embark on a journey through the process of creating a fully functional text editor using Tkinter. We will begin with the essentials of text manipulation, …

  8. Building a Text Editor GUI with Tkinter in Python

    Jun 20, 2023 · In this article, we're going through a step-by-step guide on how to build a graphical user interface (GUI) for a text editor using the Tkinter library in Python. We'll cover how to …

  9. Create UI in Python-Tkinter - TutorialsTeacher.com

    First of all, import the TKinter module. After importing, setup the application object by calling the Tk() function. This will create a top-level window (root) having a frame with a title bar, control …

  10. python - How to create a window that displays text? - Stack Overflow

    Jun 30, 2022 · You can use the following code to get a large bold text window. from tkinter import * password = ("Hello") root = Tk() var = StringVar() var.set(password) l = Label(root, …

Refresh