Pygame.init () não está funcionando [duplicado]

Esta pergunta já tem uma resposta aqui:

Eu continuo recebendo o erro 'módulo' objeto não tem nenhum atributo 'init' 2 respostas

Eu baixei o pygame com sucesso, mas agora quando faço:

import pygame
pygame.init()
size =  [400, 400]

pygame.display.set_mode(size)

dá erros:

Traceback (most recent call last):
File "<pyshell#11>", line 1, in <module> pygame.init AttributeError:
'module' object has no attribute 'init'

E nada está funcionando para mim. Por favor me ajude a usarinit edisplay.

estou usando

python 3.4.1 epygame 1.9.2 onWindows 7 de 32 bits e

Eu instalei o pygame no

c://python34/include/

questionAnswers(3)

yourAnswerToTheQuestion