GUI-Calculator

A GUI calculator made with tkinter module in python

How to setup the calculator

  1. If pygame is not installed, go to terminal and do pip install pygame
  2. 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
    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")

GitHub

https://github.com/5kepT1c4L/GUI-Calculator