Posteriormente a indagar en varios repositorios y páginas webs de internet finalmente encontramos la respuesta que te compartimos más adelante.
Ejemplo 1: instalar pygame
# on your terminal :
pip install pygame
# check if pygame run :
py -m pygame.examples.aliens
# if a window is open -> pygame is correctly installed
Ejemplo 2: ejemplo de pygame
1# Simple pygame program23# Import and initialize the pygame library4import pygame
5 pygame.init()67# Set up the drawing window8 screen = pygame.display.set_mode([500,500])910# Run until the user asks to quit11 running =True12while running:1314# Did the user click the window close button?15for event in pygame.event.get():16if event.type== pygame.QUIT:17 running =False1819# Fill the background with white20 screen.fill((255,255,255))2122# Draw a solid blue circle in the center23 pygame.draw.circle(screen,(0,0,255),(250,250),75)2425# Flip the display26 pygame.display.flip()2728# Done! Time to quit.29 pygame.quit()
Ejemplo 3: python pygame
# Be sure to install pygame via pipimport pygame
import sys
# initialize it
pygame.init()# configurations
frames_per_second =30
window_height =600
window_width =400# colors
WHITE =(255,255,255)
BLACK =(0,0,0)
BLUE =(0,0,255)# creating window
display = pygame.display.set_mode((window_width, window_height))# creating our frame regulator
clock = pygame.time.Clock()# forever loopwhileTrue:# frame clock ticking
clock.tick(frames_per_second)# frame Drawing
display.fill(WHITE)# event loopfor event in pygame.event.get():if event.type== pygame.QUIT:
pygame.quit()
sys.exit()
Ejemplo 4: tutorial de pygame
clock = pygame.time.Clock()
Ejemplo 5: tutorial de pygame
import pygame
pygame.init()
Ejemplo 6: tutorial de pygame
crashed =Falsewhilenot crashed:for event in pygame.event.get():if event.type== pygame.QUIT:
crashed =Trueprint(event)
pygame.display.update()
clock.tick(60)
Te mostramos las reseñas y valoraciones de los lectores
Si crees que ha sido útil nuestro post, sería de mucha ayuda si lo compartieras con más programadores de esta manera nos ayudas a extender esta información.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)