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