DEV Community

Abo Alhasan
Abo Alhasan

Posted on

this is title

x = range(6) 

#display x: 
print(x) 

#display the data type of x: 
print(type(x))  


range(0, 6) 
<class 'range'>  
Enter fullscreen mode Exit fullscreen mode

Latest comments (0)