Type ==== 1) Which is the type of variables ``x, y, z, t`` and ``v`` after each assignment statement ?. And which is its value ?. Answer it manually. Then check the result using a Python shell and the function ``type``. .. code:: python x = 3 == 4 y = 'abc' * 2 z = 4/2 t = 10 ** 2 v = 'ann' < 'albert' 2) Which is the type of variables ``x, y`` and ``z`` after each assignment statement ?.Answer it manually. Then check the result using a Python shell and the function ``type``. .. code:: python x = 43.0 y = 43,0 z = 43.0e-1