
jessepezzillo
2,701 PointsWhat am i missing here? The errors arn't helping at all.
I can't seem to get this code to meet the challenge, the errors just say "bummer" which is the least helpful :)
def just_right(string):
count = int(len(string))
if count < 5:
print("Your string is too long.")
elif count > 5:
print("Your string is too short")
else:
return True
1 Answer

james south
Front End Web Development Techdegree Graduate 33,257 Pointsthe challenge instructions say to return the statements, not print them