以下を実行するとよい
python -c "import pygame; print(pygame.version.vernum);"
python3 -c "import pygame; print(pygame.version.vernum);"
$ python -c "import pygame; print(pygame.version.vernum);"
pygame 1.9.4
Hello from the pygame community. https://www.pygame.org/contribute.html
(1, 9, 4)
$ python3 -c "import pygame; print(pygame.version.vernum);"
pygame 1.9.4
Hello from the pygame community. https://www.pygame.org/contribute.html
(1, 9, 4)