I have imported music using pygame and the song is being played, but it is lagging. Here is my code:
import pygame
from Tkinter import *
file = 'OnOurWay.mp3'
root = Tk()
pygame.init()
pygame.mixer.init()
pygame.mixer.music.load(file)
pygame.mixer.music.play()
root.mainloop()