Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Mark Lawrence Newsgroups: comp.lang.python Subject: Re: [Beginner] - Hanging in the code, can't figure out what's wrong Date: Sun, 3 Apr 2016 01:38:21 +0100 Lines: 27 Message-ID: References: <66afb6f1-ca2b-4f9b-a1ec-ed255fa3030f@googlegroups.com> <03c7da56-c752-460f-98b1-84b7166a2cc3@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de ZX7egL4iDPUxmCm3mnM1iQCjRo4GCmLurJHo8bc/SW4w== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:: [': 0.03; 'from:addr:yahoo.co.uk': 0.05; 'subject:code': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:80.91.229.3': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'slash.': 0.16; 'wrote:': 0.16; 'test.': 0.18; 'language': 0.19; 'lawrence': 0.22; 'leave': 0.23; 'header:In-Reply-To:1': 0.24; 'header:User-Agent:1': 0.26; 'header:X-Complaints-To:1': 0.26; 'see,': 0.27; 'subject:what': 0.29; "i'm": 0.30; 'code': 0.30; 'language.': 0.32; "i'll": 0.33; 'file': 0.34; 'could': 0.35; 'to:addr:python-list': 0.36; 'received:org': 0.37; 'sure': 0.39; 'subject:the': 0.39; 'to:addr:python.org': 0.40; 'mark': 0.40; 'charset:windows-1252': 0.62; 'more': 0.63; 'our': 0.64; 'forward': 0.66; 'skip:n 40': 0.72; 'pythonistas,': 0.84 X-Injected-Via-Gmane: http://gmane.org/ X-Gmane-NNTP-Posting-Host: 80.234.189.93 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.7.1 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:106334 On 03/04/2016 01:12, BartC wrote: > On 02/04/2016 23:31, Loop.IO wrote: > >> Oh i see, so the code prompts for a name.. so i'm more lost than i >> thought, what do I need to change to make it just create the file with >> the chosen name Launch2.bat without the prompt? > > If you don't want the user to enter anything, then I explained how > before, just use: > > name='C:\\Documents\\PythonCoding\\launch2.bat' > > if that's the file name you need. > name = r'C:\Documents\PythonCoding\launch2.bat' Alternatively you could just use a forward slash. I'm not sure which is the most efficient, I'll leave that to others to test. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence