Re: chdir()

2007-05-08 Thread Necmettin Begiter
On Tuesday 08 May 2007 22:54:39 HMS Surprise wrote: > WindowsError: [Error 123] The filename, directory name, or volume > label syntax is incorrect: 'c:\twill'. > > What is wrong with the syntax? Try 'c:\\twill' because the '\' character is the escape character. Eg: \n is new-line (aka crlf) \t is

Re: Suggestions for how to approach this problem?

2007-05-08 Thread Necmettin Begiter
On Tuesday 08 May 2007 22:23:31 John Salerno wrote: > John Salerno wrote: > > typed, there are often line breaks at the end of each line > > Also, there are sometimes tabs used to indent the subsequent lines of > citation, but I assume with that I can just replace the tab with a space. Is this how

Re: Definitions of editor and IDE?

2007-02-04 Thread Necmettin Begiter
04 Şub 2007 Paz 00:48 tarihinde, Dick Moores şunları yazmıştı: > Are there generally accepted definitions of "editor" and "IDE". Is there a > clear-cut distinction between them? I've been looking at the lists of each > at python.org, < http://wiki.python.org/moin/PythonEditors>  and < > http://wi

Re: print help content in a Command Prompt

2008-02-25 Thread Necmettin Begiter
25 February 2008 Monday 11:15:14 tarihinde [EMAIL PROTECTED] şunları yazmıştı: > Hi, > This is a basic problem, but I want to print help content in a Command > Prompt in WinXP and scrolling back to see the first lines. If I start > a command prompt and run python, and then for example, > > >>> hel

Re: float / rounding question

2008-02-25 Thread Necmettin Begiter
25 February 2008 Monday 12:44:46 tarihinde [EMAIL PROTECTED] şunları yazmıştı: > Hi I'm very much a beginner with Python. > I want to write a function to convert celcius to fahrenheit like this > one: > > def celciusToFahrenheit(tc): > tf = (9/5)*tc+32 > return tf > > I want the answer co