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:
*
* *
* * *
* * * *
* * *
* *
*
*
Nesta página do site você pode assistir ao vídeo on-line PYTHON PROGRAMMING LAB Exp 10 duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário DIWAKAR TIWARY 19 Janeiro 2024, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 126 vezes e gostou 2 espectadores. Boa visualização!