+ 6
You can copy the link to your code and paste it here: like this 😉 https://code.sololearn.com/cb77D8n91J0E/?ref=app The issue: line 7 - print(kilometer, length) You are trying to concatenate a float with a string which you can't do. The other solution is to cast kilometer to a string - print(str(kilometer) + length)
4th Oct 2020, 5:11 PM
Russ
Russ - avatar