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.