On Mar 19, 2015, at 08:00, jyothi.n...@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

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to