Path: csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.049 X-Spam-Evidence: '*H*': 0.90; '*S*': 0.00; 'subject:Windows': 0.02; 'cc:addr:python-list': 0.11; 'from:addr:xs4all.nl': 0.16; 'received:194.109': 0.16; 'received:194.109.24': 0.16; 'received:xs4all.nl': 0.16; 'wrote:': 0.18; 'cc:addr:python.org': 0.22; '"you': 0.24; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'skip:" 30': 0.26; 'skip:" 20': 0.27; 'header:In-Reply-To:1': 0.27; 'faster,': 0.31; 'run': 0.32; 'raw': 0.33; "can't": 0.35; 'subject:service': 0.36; 'charset:us-ascii': 0.36; 'subject:?': 0.36; 'either': 0.39; 'header:Message-Id:1': 0.63; 'email addr:gmail.com': 0.63; 'received:194': 0.64; 'to:addr:gmail.com': 0.65; 'mar': 0.68; 'computers': 0.72; 'received:nl': 0.74 Subject: Re: Windows service in production? Mime-Version: 1.0 (Apple Message framework v1085) Content-Type: text/plain; charset=us-ascii From: Michiel Overtoom In-Reply-To: <6e1d77bd-8289-478f-a44a-35b2be3dac0d@googlegroups.com> Date: Thu, 19 Mar 2015 19:20:47 +0100 Cc: python-list@python.org Content-Transfer-Encoding: quoted-printable References: <90342eaa-28e2-4a86-9e5c-07299de10435@g9g2000yqb.googlegroups.com> <6e1d77bd-8289-478f-a44a-35b2be3dac0d@googlegroups.com> To: jyothi.nadu@gmail.com X-Mailer: Apple Mail (2.1085) X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.19 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 15 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1426789317 news.xs4all.nl 2968 [2001:888:2000:d::a6]:60356 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:87743 On Mar 19, 2015, at 08:00, jyothi.nadu@gmail.com wrote: > file_path =3D "D:\Tarang\Project\form1.py" Use either slashes (/), raw strings, or double backslashes: file_path =3D "D:/Tarang/Project/form1.py" file_path =3D r"D:\Tarang\Project\form1.py" file_path =3D "D:\\Tarang\\Project\\form1.py" --=20 "You can't actually make computers run faster, you can only make them do = less." - RiderOfGiraffes