Computer Science, asked by dipsemail2248, 7 months ago

[7,3,-1,-5] in python range function

Answers

Answered by pavithranatarajan855
0

Answer:

print(list(range(7,-6,-4)))

Explanation:

initial value=7

step value=-4

end value=-6

Similar questions