“cómo hacer pygame de ventana” Código de respuesta

Cómo hacer una ventana de Pygame

import pygame 
pygame.init()

"""this is how to make a pygame window, the 500,500 is the size of the window
btw(it is your choice what the size is ) """

var = pygame.display.set_mode((500,500))

"""this is how to change the title of the window"""
pygame.display.set_caption('example')
Prickly Pollan

cómo hacer pygame de ventana

import pygame

pygame.init()

win = pygame.display.set_mode((800,600))
pygame.display.set_caption('A bit Racey')
win.fill(255,255,255)
Vast Vulture

Respuestas similares a “cómo hacer pygame de ventana”

Preguntas similares a “cómo hacer pygame de ventana”

Más respuestas relacionadas con “cómo hacer pygame de ventana” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código