Re: [Tutor] Type Conversion

2007-05-10 Thread ALAN GAULD
On 5/9/07, Alan Gauld <[EMAIL PROTECTED]> wrote: > > Please don;t hijack a thread to ask something unrelkated. > >Start a new threead it helps keep things clear and makkes > >it easier to find responses later. > > What do you mean by hijack a thread? > > Her subject "Type conversion" is the only

Re: [Tutor] Type Conversion

2007-05-09 Thread Rikard Bosnjakovic
On 5/9/07, Alan Gauld <[EMAIL PROTECTED]> wrote: > Please don;t hijack a thread to ask something unrelkated. > Start a new threead it helps keep things clear and makkes > it easier to find responses later. What do you mean by hijack a thread? Her subject "Type conversion" is the only occurence i

Re: [Tutor] Type Conversion

2007-05-09 Thread Alan Gauld
"Jessica Brink" <[EMAIL PROTECTED]> wrote > I am doing a simple program that takes input from the user Please don;t hijack a thread to ask something unrelkated. Start a new threead it helps keep things clear and makkes it easier to find responses later. Mike has answered your question in th

Re: [Tutor] Type Conversion

2007-05-09 Thread Mike Hansen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Jessica Brink > Sent: Wednesday, May 09, 2007 12:38 PM > To: Teresa Stanton; Python Tutor > Subject: [Tutor] Type Conversion > > I am doing a simple program that t

[Tutor] Type Conversion

2007-05-09 Thread Jessica Brink
I am doing a simple program that takes input from the user (a temp. in degrees Celsius) and converts it to a temperature in Fahrenheit. The following program works: def conversion (): C = input ("Enter the temperature in degrees Celcius:\n") F = (9.0 / 5.0) * C + 32 print F conve