Setup
- Create a work directory. This is where you will create your programs, etc.
- Download graphics.py (V5) and copy it to the work directory.
- Download (and print?) graphics.py (V5) documentation (pdf file).
- Create and execute the Python3 program show below.
This will verify the graphics.py version you are using.
Display Graphics.py Version
#! /usr/bin/python3
# ===================================================================
# display graphics.py version
# ===================================================================
import graphics as gr
print()
print(f'Graphics.py version is {gr.__version__}')
print()