About 26,100,000 results
Open links in new tab
  1. user interface - Getting python to open a window - Stack Overflow

    May 24, 2015 · First you initialize the screen using turtle.Screen(). Then you use screen.setup() and pass in the screen size you want. Lastly, you use screen.bgcolor() to change the background color.

  2. turtle.Screen().setup() method – Python | GeeksforGeeks

    Mar 22, 2025 · The turtle.screensize() function in Python's turtle module is used to set or retrieve the size of the drawing canvas (the area where the turtle moves and draws). This function helps in customizing the workspace according to user requirements. Example: Checking default screen size [GFGTABS] Python im

  3. Open a New Window with a Button in Python – Tkinter

    Apr 8, 2025 · In this guide, we will explore how to open a new window when a button is clicked using two approaches: Setting Up Tkinter. Tkinter comes pre-installed with Python. However, on some Linux distributions like Ubuntu, we may need to install it using: Creating a New Window Using a Function.

  4. Python Turtle Window with examples - Python Guides

    Dec 1, 2021 · In this section, we will learn about how to create a turtle window in a python turtle. Python turtle window is a place where a turtle can draw different shapes and pictures. Here TurtleScreen class defines the window. We can also resize the size of the window by applying a …

  5. How to Create Full Screen Window in Tkinter? - GeeksforGeeks

    Apr 13, 2022 · There are two ways to create a full screen window in tkinter using standard python library for creating GUI applications. Syntax: We will set the parameter ‘-fullscreen’ of attributes () to True for setting size of our window to fullscreen and to False otherwise. Approach: Disadvantage: We get an output tkinter WINDOW with no toolbar.

  6. Python: Start program in full screen mode - Stack Overflow

    Apr 19, 2017 · Launch the browser using browser-specific command line arguments. You might be able to to do browser.args.append(FULLSCREEN_ARGUMENT) and then call browser.open_new(URL) instead of launching the browser manually using …

  7. Python Turtle Graphics Alternatives: Pygame, Tkinter, and More

    Apr 26, 2025 · import turtle screen = turtle.Screen() # Set the window size and position (width, height, startx, starty) screen.setup(width= 600, height= 400, startx= 100, starty= 50) # Adjust the values # Or, if you need to set the canvas size, use screensize: # screen.screensize(canvwidth=800, canvheight=600, bg="yellow") …

  8. Is there a way to make a display window in python?

    Sep 9, 2019 · Maybe github.com/bottlepy/bottle for a local web app? You could use Tkinter. It comes with Python so you should not need to download anything. https://www.geeksforgeeks.org/python-gui-tkinter/ I've had a pretty good experience using Kivy. It's easier to learn than Tkinter, in my opinion, though it's possibly less flexible.

  9. 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 GUI. What Is a GUI? What Is Tkinter? How Can We Create a Window? How Can We Display Text in a Label? What Is a GUI?

  10. Creating Screens With Python Turtle: A Beginner's Guide

    Nov 14, 2024 · Learn to create screens and graphics with Python Turtle. This beginner's guide will teach you the basics of screen manipulation and graphics creation.

  11. Some results have been removed
Refresh