Q8.What will be the output of the code snippet given below?
```
a = 5
b = 5
for x in range(0, a):
for y in range(b, x - 1, -1):
print(y, end=' ')
print()
```
Save
Check
Details
Q8
16 Jul 2023
Q8.What will be the output of the code snippet given below?
```
a = 5
b = 5
for x in range(0, a):
for y in range(b, x - 1, -1):
print(y, end=' ')
print()
```