Saltar al contenido

Ejemplo de código de ventana emergente de Python Turtle

Mantén la atención porque en esta noticia encontrarás la solución que buscas.Esta crónica ha sido evaluado por nuestros especialistas para garantizar la calidad y exactitud de nuestro post.

Ejemplo 1: hacer una ventana emergente en python

from tkinter import*defalert_popup(title, message, path):"""Generate a pop-up window for special messages."""
    root = Tk()
    root.title(title)
    w =400# popup window width
    h =200# popup window height
    sw = root.winfo_screenwidth()
    sh = root.winfo_screenheight()
    x =(sw - w)/2
    y =(sh - h)/2
    root.geometry('%dx%d+%d+%d'%(w, h, x, y))
    m = message
    m +='n'
    m += path
    w = Label(root, text=m, width=120, height=10)
    w.pack()
    b = Button(root, text="OK", command=root.destroy, width=10)
    b.pack()
    mainloop()

Ejemplo 2: círculo de tortuga () python

import turtle
t = turtle.Turtle()
t.color(color)# choose a color
t.begin_fill()# if you want it to be filled with color later
t.circle(10)# the function "circle" and the radious.
t.end_fill()# completing the filling of the circle. # try to do it and see if it works. it worked for me.

Ejemplo 3: configuración de la tortuga Python

import turtle
window_Name = turtle.Sreen()
turtle_Name = turtle.Turtle()

Tienes la posibilidad mostrar esta división si te valió la pena.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *