#Hike calculator

1 messages · Page 1 of 1 (latest)

winged root
#

You inverted the function calls on the input. You need to do float(input(...))

#

Btw, when you send code do it like that

```python
Your code here
```

#

Also getFeet will not return what you think it will. It's going to return true or false. Just so return mile * 5280

mental seal
#

Thank you

winged root
#

If I can give a few other advice. Use snake_case with Python for variable and function name.

I would recommend to return getMile to something like mile_to_feet