W2_Ex-4_AssertionError_b to be a float value

My code is correct, but it is still giving me errors. Please look into this matter

(Solution code removed, as posting it publicly is against the honour code of this community)

Easy solution.

You initialized b = 0 (an integer, in Python world).

The request is to initialize b as a float = 0 . Just add a “.” ( 0. is a float in Python world).

Please try that and let me know how it goes.

Thanks,

Juan