From console I can run
import os, sys, pygame
print ''
print 7
import pygame, sys
from pygame.locals import*
pygame.init()
visor=pygame.display.set_mode((400,400),0,32)
then this OPEN NEW window of grafic.
But when I run from BROWSER, only show the string 7
How I can open the same window ?
I no like run from HTTP remote, oly in the same PC, in LOCAL !
Thanks