Python Pattern Programs | Printing Stars '*' in L Shape

preview_player
Показать описание
In this Python Pattern Program video, you will learn to print stars '*' in L shapes. Python alphabetical Pattern Program. Python program to print star "*" in alphabetical shape.

In the series of Python alphabetical Pattern, we will learn to print all alphabet Pattern from A to Z.
So guys Keep watching these video and stay connected with me.

And if you get any query in code then comment me I will help you.

––––––––––––––––––––––––––––––
––––––––––––––––––––––––––––––
Рекомендации по теме
Комментарии
Автор

this is the easiest way to doing all type or pattern program

saikatghosh
Автор

def pattern(n):

for i in range(0, n-1):
print("*")

for j in range(0, n):
print("*", end=" ")
pattern(15)

RAHULGUPTA-cobr