1#```` Code for python programming language````
2#TO playsound in your python code you need to install play sound module.
3# To install playsound moudule-
4#(1). Open Terminal
5#(2). "In terminal only" type "pip install playsound"
6# After installing playsound you need to write-
7import playsound from playsound
8# syntax of playsound command
9playsound("C:\\file_link\\file_name")
10# note: ````in python you need to specify path using double back slashes "\\",
11# instead of single forward or back slash````
12# please reaad the starting comments also they are very useful(ignore if readed)
13# Enjoy :)