As you know, Python is dynamically-typed. This means that you don’t need to declare the type of variable while writing the code.
It uses duck-typing. But wait, what’s that? Well, it just means that if it looks like a duck, it must be a duck.
While this is easy on the programmers during coding, it can raise run-time errors.
Leave a Reply