Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 561 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 561 Bytes

Basic-Python-Games

Basic Python Games with basic python code

Things to do

1)Add the provided bounce.wav to add the sound effect otherwise it will give you an error .

2)For operating systems other than Linux

  MAC devices use  os.system("afplay bounce.wav&")
  
  For Windows devices import winsound and use winsound.Playsound("bounce.wav", winsound.SND_ASYNC) in place of      os.system("aplay bounce.wav&")

3)To run this You need python-tk module installed in your system In ubuntu based system just type sudo apt install python3-tk.