???????!!!!
Seguro que has utilizado python?
por que python no genera ejecutables, o al menos no por defecto.
En cuanto a la versión, la mas reciente es la 1.9.1. No deberias tener problema por el windows pero debes de checar que sea, que sea la misma version de python que estes utilizando.
Aca te dejo un hola mundo en pygame
Código Python:
Ver originalimport pygame
class Text:
def __init__(self, FontName = None, FontSize = 30):
pygame.font.init()
self.font = pygame.font.Font(FontName, FontSize)
self.size = FontSize
def render(self, surface, text, color, pos):
text = unicode(text, "UTF-8")
x, y = pos
for i in text.split("\r"):
surface.blit(self.font.render(i, 1, color), (x, y))
y += self.size
pygame.init()
white = (255, 255, 255)
size = width, height = 640, 480
screen = pygame.display.set_mode(size)
pygame.display.set_caption("Pygame Hello Word!")
color = (0, 0, 0)
text = Text()
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
exit()
if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:
exit()
screen.fill(color)
text.render(screen, "Hello Word!", white, (0, 0))
pygame.display.flip()