Song player | Made by python
Song player Obviously it's not that much perfect as windows or phone's music player's are but for me it's enough to use in this we can play music specifically and in mixture also.. ------------------------------------------- from playsound import playsound opinion = input ( "In which type you want to listen songs.. \n 1: For specifically.. \n 2: For mix continiously... \n " ) if opinion == '1' : print ( "Songs available \n 1: Alan Walker - Fade \n 2: Alan Walker - Force \n 3: Alan Walker - Spectre \n 4: Cartoon - On & On \n 5: Different Heaven & EH!DE - My Heart \n 6: Jarico - Landscape " ) song = input ( "Enter the number of song which you want to here \n " ) if song == "1" : print ( "Playing..." ) playsound( 'D: \\ d data \\ tunes 3 \\ Alan Walker - Fade [NCS Release].mp3' ) elif song == "2" : print ( "Playing..." ) pl...