Printing Stars '*' in E Shape in python || Alphabet Pattern in python

Опубликовано: 17 Май 2026
на канале: CodeWithShivam
88
1

In this Python Pattern Printing Programs video tutorial you will learn to print star '*' in E shape in detail.

To print Star Pattern in E shape in python you have to use two for loops. the first loop is responsible for rows and the second for loop is responsible for columns. Then we are using if else conditional statements that is because we are not printing stars in each row and each column we need to print stars in particular row or column for that we need conditions. Here we are using logical and And logical or operators.

Source code:

for i in range(7):
for j in range(5):
if j==0 or (i%3==0 and j!=0):
print("*",end=" ")
else:
print(end=" ")
print()

===========Some heading==============
Python Tutorial
python
Python Online Training
Learn Python
Python Tutorial
python programming Tutorial
python Programming Language Tutorial
python examples
python Advanced Tutorial
python Tutorial for Beginners with examples
python Guide
python 3.0 Tutorials
python crash course
Python Tutorial for Beginners
Python Tutorial for Absolute Beginners
Python Tutorials by CodeWithShivam

#alphabetpattern #learntechtotech #patternprogramming #pythontutorial
#deleterecordinsqlite

========Alphabets in star shape link ==========

How to print A in star shape :    • Alphabet Pattern in python || Printing Sta...  

How to print B in star shape :   • Alphabet Pattern in python || Print alphab...  

How to print C in star shape :   • Printing Stars '*' in C Shape in python ||...  

How to print D in star shape :   • Printing Stars '*' in D Shape in python ||...  

=========Python GUI programs =========
My first program in python :   • my first program in python. || how to writ...  

Python random number game:    • Random Number Guessing Game In Python ||  ...  

Python GUI calculator :   • Simple Calculator in Tkinter Python || pyt...  

Python Login system :   • How to create Login System in Python Tkint...  

Print table of any input number software :   • How to Print Table in Python | how to crea...