Pages
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 - 09
9: Write a program in Python to generate the following pattern using nested loops:
1
22
333
4444
55555
for i in range(1,6):
for j in range(1,i+1):
print(i,end='')
print()
Output:
1
22
333
4444
55555
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Class 12 Computer Science 2025 CBSE Question Paper Solution
SECTION - A 1-False 2-C-20 3-D-ValueError 4-B-Break 5-B 6-D 7-is 8-A 9-A-UNIQUE 10-A - 25$$15 11-B 12-A-dict() 13-A-UPDATE 14-B-count() 15-C...
Practical No. : 8 - Create a binary file with roll_no, name and marks of some students and update the marks of specific student.
'''Practical No: 9: WAP in Python to create a binary file with roll_no, name and marks of the students and update the marks of...
List of Python with CS practical for class 12
List of Python with CS practical for class 12 Part – 1 Python with CS 1) WAP in Python to find the factorial of a number using fun...
No comments:
Post a Comment