Ver Mensaje Individual
  #5 (permalink)  
Antiguo 04/11/2011, 10:34
Avatar de razpeitia
razpeitia
Moderador
 
Fecha de Ingreso: marzo-2005
Ubicación: Monterrey, México
Mensajes: 7.321
Antigüedad: 19 años, 8 meses
Puntos: 1360
Respuesta: Que IDE utilizar con python(pygame)

Código Python:
Ver original
  1. import pygame
  2.  
  3. pygame.init()
  4. SIZE = (640, 480)
  5. screen = pygame.display.set_mode(SIZE)
  6. running = True
  7.  
  8. while running:
  9.     for event in pygame.event.get():
  10.         if event.type == pygame.QUIT:
  11.             running = False

Prueba con el hola mundo de pygame.