This is a Space Invader Game created using python turtle. It contains two python files:
- space.py
- space_up.py
The space_up.py file is little bit updated than space.py. But to understand how the program is working you should first go through space.py file and after understanding the code go through space_up.py file.
In both the files winsound and os modules are used to play sound in windows and linux/mac respectively. In which sound for linux is commented, if you are running the program in linux; first uncomment the sound for linux and comment the sound for windows. In the program it is mention that which line is used to give sound for windows and which line is used to give the sound for linux.
For this programs additional turtle module of python is required and also winsound for windows users and os for linux/mac users. If this modules are not pre-installed, then install it first to execute programs without any errors.