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()
```
Q8
16 Jul 2023
Programming in Python · Week 5
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()
```