To correct the TypeError: object of type 'float' has no len() in Python, the main thing you need to know is that taking the length of a float is nonsense. Python tells you the length of containers that hold a certain number of objects. A float is no container, it is just a singular object.
Sections
0:00 - Intro
0:04 - Explaining The Error
0:11 - How len() Is Normally Used
0:20 - Fix The Error
#python #codingtutorial #learntocode