Completion requirements
This book resource provides information about variable definition, types, rules to create variables, assign values etc.
Note : This is mandatory to complete. After completion, you can manually mark the activity as completed
7. Modify the Data Type of the Python Variables
The Python variables are not declared with any particular data type. We can give variable data type even after variables have been assigned values.
Example: var=100
var="BRAOU"
if we print the value inside "var", we will get BRAOU as output.