State True or False
“Variable declaration is implicit in Python.”
Answer:
Assigning a value to a variable without specifying its type is called implicit declaration.
Example:
- x = 5
- x = “five”
Python supports implicit declaration of variables.
So, the given statement is true.