CBSE Class 11 Informatics Practices
Question 36 of 36
Conditional and Looping Constructs — Question 36
Back to all questionsn
=
5
for
i
in
range
(
1
,
n
+
1
):
for
j
in
range
(
i
,
0
,
-
1
):
print
(
j
,
end
=
" "
)
print
()
Output
1
2 1
3 2 1
4 3 2 1
5 4 3 2 1