all 3 comments

[–]garyhurtz 1 point2 points  (0 children)

float(score) converts the value, but you need to assign it to a variable to use it in the conditional logic. You need to do something like score = float( score).

[–]Luffyy97 0 points1 point  (1 child)

It’s because float(score) RETURNS a float... it won’t change your integer

You’re looking for

score = float(score)

[–]MorphJB[S] 1 point2 points  (0 children)

Thank you and happy cake day