Game programming: Your first pygame code!
Install pygame to Python 3. We don’t want to re-invent the wheels. Follow this tutorial to get pygame installed on your system: http://danielj.se/2012/06/16/how-to-install-pygame-to-python-3-on-ubuntu/ Once you got it all set up, type the following game in your editor, save it as hellogame.py, and run it with python3 hellogame.py import pygame, sys…

