CBSE Class 11 Computer Science Question 56 of 98

Python Programming Fundamentals — Question 18

Back to all questions
18
Question

Question 13

What is 'Dynamic Typing' feature in Python?

Answer

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)