

InterviewSolution
Saved Bookmarks
1. |
Dynamic typing feature |
Answer» a=10 a="name"<br>dynamic typing means you can assign many values to one variable.a=10a=20<br>Dynamic Typing feature of Python:\tDynamic typing is characteristic of many of the scripting languages:\xa0Perl, PHP, Python, etc\tDynamic typing in Python\xa0means the interpreter itself infers the\xa0type of data that a variable receives, without the need of user.\tHere, the types are automatically determined at run time, so it doesn’t require a declaration of variables at the time of code. | |