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
0
The answer would be: -3-4-5-6
Similar questions