PYTHON PROGRAMMING LAB Exp 10

Veröffentlicht am: 19 Januar 2024
auf dem Kanal: DIWAKAR TIWARY
126
2

Exp No 10 Write a Python program to construct the following pattern, using a nested for loop
*
* *
* * *
* * * *
* * * * *
* * * *
* * *
* *
*
SOURCE CODE:
Set the value of 'n' to 5 (this will determine the number of lines in the pattern)
n = 5
Iterate through the range of numbers from 0 to 'n' (exclusive)
for i in range(n):
Iterate through the range of numbers from 0 to 'i' (exclusive) for each 'i' in the outer loop
for j in range(i):
Print '*' followed by a space without a new line (end="" ensures printing in the same line)
print('* ', end="")
Move to the next line after printing '*' characters for the current 'i'
print('')

Iterate through the range of numbers from 'n' down to 1 (inclusive), decreasing by 1 in each iteration
for i in range(n, 0, -1):
Iterate through the range of numbers from 0 to 'i' (exclusive) for each 'i' in the outer loop
for j in range(i):
Print '*' followed by a space without a new line (end="" ensures printing in the same line)
print('* ', end="")
Move to the next line after printing '*' characters for the current 'i'
print('')

INPUT AND OUTPUT:

*
* *
* * *
* * * *
* * *
* *
*
*


Auf dieser Seite können Sie das Online-Video PYTHON PROGRAMMING LAB Exp 10 mit der Dauer stunde minuten sekunde in guter Qualität ansehen, das der Benutzer DIWAKAR TIWARY 19 Januar 2024 hochgeladen hat, den Link mit Freunden und Bekannten teilen, dieses Video wurde auf Youtube bereits 126 Mal angesehen und es wurde von 2 den Zuschauern gefallen. Viel Spaß beim Betrachtenden Zuschauern gefallen!