GUI-Calculator
A GUI calculator made with tkinter module in python
How to setup the calculator
- If pygame is not installed, go to terminal and do pip install pygame
- If desired, change the mp3 and PNG by downloading desired ones and replace the current paths in the code to the mp's and PNG's
- If not, update both files' paths to that on your computer's
- If your IDE won't run the code, try opening the main.py file via the python shell and run from there
def play_song():
mixer.init()
mixer.music.load(r'C:\Users\jinge\Downloads\song.mp3')
mixer.music.play()
photo = PhotoImage(file = r"C:\Users\jinge\Downloads\coolgif.png")