Problem Statement
Why is Python called dynamically typed?
Explanation
Python decides the data type of a variable at runtime based on the value you assign. You do not need to declare a type explicitly.
This flexibility makes coding faster but can cause runtime errors if unexpected types are passed. It contrasts with statically typed languages where type checks happen at compile time.
Code Solution
SolutionRead Only
x=10 x='Hi'
