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
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
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
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
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