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