Listing A


string_variable1 = string     #This assigns a string to the variable

integer_variable2 = integer   #This assigns an integer to the variable

string_variable1 = integer_variable2   #Here the data type will change from a string to an integer.