C-16-Q141mediumsingle_mcq
The chapter says that in Python the data type after assignment can be:
The chapter says that in Python the data type after assignment can be:
- anever changed
- bchanged at any time
- cchanged only by restarting the program
- dchanged only with admin rights
ব্যাখ্যা
Python is dynamically typed, so a variable's data type is determined by whatever value it currently holds and can change with each new assignment. Reassigning a variable to a different kind of value changes its type at any time.