I'm very new to both Python and Pygame. I have Python 3.5.1 32-bits installed on Window and Pygame 1.9.2 Python 3.5 installed as well. But in case if I forget, is there a way to check the pygame version I have installed from either command line or Python IDLE.
For Python, I use python -V
But for Pygame, I don't know how to.
Use this: pip show <pack_name>
Alternative:
pip freeze | grep <pack_name>