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