KnowledgeBoat Logo

Computer Science

What is Dynamic Typing feature of Python ?

Python Funda

27 Likes

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)

Answered By

14 Likes


Related Questions