What is Dynamic Typing feature of Python ?
27 Likes
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
What do you understand by undefined variable in Python ?
What are variables ? How are they important for a program ?
What is the error in following code : X, Y = 7 ?
What would the following code do : X = Y = 7 ?