Result Size: 1264 x 38
x
 
x = float(20.5)
#отобразить x:
print(x)
#отобразить тип данных x:
print(type(x))
        
20.5
<class 'float'>