Possible Duplicate:
Python - Parse String to Float or Int
I want to know how I can multiply raw input by a certain number. This is what I have so far:
dog = raw_input("Dog:")
multiply = (dog * 2)
print multiply
The result is (let's say I chose 10 as the raw input):
1010
I know why I'm getting this, because python is taking it as a string. How do I take it as a float instead?