Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Thanks a lot! I really do not know why i didn´t think of that.
Keep up the good work!
A float is not a string.
def problem(a):
if isinstance(a,int):
return (a * 50) + 6
else:
return "Error"
This is my code (python)
I get everything right only one error:
"Error" should equal 66
But if my math is good enough I am prett damn sure that 66 would only be posible if a is a float (not a whole number)
where do I have an error?