Quiz Question 1 of 5
Which of the following Python statements is true regarding the dynamic typing system in Python?
Choose the correct answer below:
-
A
A variable in Python can hold different data types at different points in the program without raising an error.
-
B
Python enforces type consistency across the entire program, requiring explicit type declarations.
-
C
Once a variable is assigned an integer value, it cannot be assigned a float value in Python.
-
D
Python variables are statically typed, meaning their type cannot change once declared.