The correct syntax for range function is : (1 Point) range([start], end step]) range([start], stop,[step]) range([start], step[, stop]) range[start], stop[, step] code example
Example: in range python
for i in range(x) :
#code
for i in range(x) :
#code