Computer Science, asked by omarali73, 5 months ago

What is the output of the following code?
for x in range(-3, -7, -1):
print(x, end='')
-3-4, 5-6
-3, -2,-1,0
-3, -4, -5, -6, -7
-3, -2, -1, 0, -1

Answers

Answered by NovaKun
0

The answer would be: -3-4-5-6

Similar questions