हिंदी

Write a program to print the following pattern: 1 2 3 4 5 1 2 3 4 1 2 3 1 2 1 - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

Write a program to print the following pattern:

1 2 3 4 5
1 2 3 4
1 2 3
1 2
1
टिप्पणी लिखिए

उत्तर

n = 5
for i in range (n, 0, -1):
        # The space will increase on each iteration as i value will decrease
    space = (n - i)*"  "
    print(space, end=" ")
    #This for loop will print the increasing numbers
    for j in range(1, i + 1):
        print(j, end=" ")
    print()
shaalaa.com
The ‘For’ Loop
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 6: Flow of Control - Exercise [पृष्ठ १४१]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
अध्याय 6 Flow of Control
Exercise | Q 9. (iii) | पृष्ठ १४१
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×