Printing Stars '*' in Pyramid Shape | Triangle | Python Pattern Program

preview_player
Показать описание
In this python programs video tutorial you will learn to print stars in pyramid shape in detail.

We used Nested for loops to write this program.

Printing Stars in Right Triangle Shape (mirror image)

Printing Stars in Right Triangle Shape:

Printing Stars in Inverted Right Triangle Shape

#PythonPrograms #PatternProgram

You can Checkout:
Рекомендации по теме
Комментарии
Автор

very well explained! saw so many videos but this was the easiest to understand :)

rashichaudhry
Автор

excellent explanation, not only for this questions but also help me to do other printing star pattern questions

beckypang
Автор

Excellent explanation of logic the best channel for learning about patterns

KishoreKumarV-kysh
Автор

You got one more subscriber 😊 Thanks very helpful

tanushreegharami
Автор

Great explanation with a beautiful voice.Thanks

ds
Автор

Thank you mam.. This is the best video i got ❤

pannagabm
Автор

Wow th way of explaining pyramid star very nice

lalitupadhyay
Автор

Thnks mam what a wonderful and simple explanation ❤

talhadawar
Автор

This is really an excellent channel on  Python like  "techie talkee"

chandrasekars
Автор

This is the short code that I have never seen in another videos and websites

VenkatasaiEppakayala
Автор

n = 5
i = 1
while i <=n:
k = n-i
print(" "*k, " * "*i, " "*k)
i+=1

# Author : kartik Verma
# Time complixity : 0(n)

Hi_kartik