Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #87743

Re: Windows service in production?

Subject Re: Windows service in production?
From Michiel Overtoom <motoom@xs4all.nl>
Date 2015-03-19 19:20 +0100
References <90342eaa-28e2-4a86-9e5c-07299de10435@g9g2000yqb.googlegroups.com> <mailman.44.1313481167.27778.python-list@python.org> <6e1d77bd-8289-478f-a44a-35b2be3dac0d@googlegroups.com>
Newsgroups comp.lang.python
Message-ID <mailman.26.1426789317.10327.python-list@python.org> (permalink)

Show all headers | View raw


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

Back to comp.lang.python | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Re: Windows service in production? jyothi.nadu@gmail.com - 2015-03-19 00:00 -0700
  Re: Windows service in production? Michiel Overtoom <motoom@xs4all.nl> - 2015-03-19 19:20 +0100

csiph-web