Computer Science
In Python, a variable may be assigned a value of one type, and then later assigned a value of a different type. This concept is known as .......... .
- mutability
- static typing
- dynamic typing
- immutability
Python Data Handling
19 Likes
Answer
dynamic typing
Answered By
3 Likes
Related Questions
In Python, a variable must be declared before it is assigned a value.
In Python, a variable is assigned a value of one type, and then later assigned a value of a different type. This will yield .......... .
Is it safe to directly use the == operator to determine whether objects of type float are equal?
What will the following code produce?
a = 8.6 b = 2 print ( a//b )