Computer Science, asked by rohitprajapat318, 10 months ago

display -10 to -1 using for loop​

Answers

Answered by sambhavgautam6
0

Explanation:

for i in range(-1,-10,-1):

print(i)

Similar questions