CBSE Class 11 Computer Science
Question 67 of 106
Python Fundamentals — Question 16
Back to all questions 16
Question Question 16
What is Dynamic Typing feature of Python ?
A 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)