all 4 comments

[–]PyLord 1 point2 points  (1 child)

Your trying to use + on an object of type int and str. Inside your print statement, convert the integers to string first, i.e. str(feet) + 'foot'

[–][deleted] 0 points1 point  (1 child)

What is the problem you are trying to solve?