CBSE Class 11 Informatics Practices
Question 21 of 52
Python Programming Fundamentals — Question 21
Back to all questionsA variable pointing to a value of a certain type can be made to point to a value/object of different type.This is called Dynamic Typing. For example:
x = 10
print(x)
x = "Hello World"
print(x)