You probably had named your file pygame.py
when you type:
import pygame
python won't import pygame module you want, instead it will try import local module pygame - your file. and your file hasn't method init.
try change file name from pygame.py to mypygame.py.