"bob gailer" <[EMAIL PROTECTED]> wrote> Adding key testing:
>
> if (original, to) in factors:
> factor = factors[(original, to)]
> print variable * factor
> elif (to, original):
probably meant to be
elif (to,original) in factors:
> factor = factors[(to, original)]
> print variable / factor
[EMAIL PROTECTED] wrote:
> I am still in need of more help. Currently I am just trying to get one
> conversion down, as then I can duplicate it. However I am not sure how to
> make it Convert. Currently I am working with:
>
> # Converter
> Original = raw_input("Insert inches, feet ")
>
There
<[EMAIL PROTECTED]> wrote
> Original = raw_input("Insert inches, feet ")
> To = raw_input("Insert inches, feet ")
> Variable = int(raw_input("Insert Amount to Convert "))
Up to here is OK.
> if Original == raw_input(feet) and To == raw_input(inches):
But here you get a bit confused.
raw_input
I am still in need of more help. Currently I am just trying to get one
conversion down, as then I can duplicate it. However I am not sure how to make
it Convert. Currently I am working with:
# Converter
Original = raw_input("Insert inches, feet ")
To = raw_input("Insert inches, feet ")
Variable