Pages
(Move to ...)
Home
Computer Science
Maths
Pedagogy and Teaching Methodology
GK and Current Affair
English
Our Apps
Books
Notification
▼
CLICK HERE TO JOIN US
Download and Install our Android App
Tuesday, 6 February 2024
Class 11 CS Practical - 12
12 - Write a program in Python to generate the following pattern using nested loops:
54321
5432
543
54
5
for i in range(1,6):
for j in range(5,i-1,-1):
print(j,end='')
print()
Output:
54321
5432
543
54
5
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment