Windows service in production?

Michiel Overtoom motoom at xs4all.nl
Thu Mar 19 14:20:47 EDT 2015


On Mar 19, 2015, at 08:00, jyothi.nadu at gmail.com wrote:

>  file_path = "D:\Tarang\Project\form1.py"

Use either slashes (/), raw strings, or double backslashes:

                    file_path = "D:/Tarang/Project/form1.py"
                    file_path = r"D:\Tarang\Project\form1.py"
                    file_path = "D:\\Tarang\\Project\\form1.py"

-- 
"You can't actually make computers run faster, you can only make them do less." - RiderOfGiraffes




More information about the Python-list mailing list