I'm trying to play a .mp3
file.
My code :
import os
os.system("start C:\Users\User\Desktop\Wakeup.mp3")
But, it gives an error like this:
File "C:/Users/User/PycharmProjects/pythonProject/Test.py", line 2
os.system("start C:\Users\User\Desktop\Wakeup.mp3")
^
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 8-9: truncated \UXXXXXXXX escape
with other variants for playing a sound, I'm getting the same error
Thanks for attention