Tech
Forums
Jobs
Books
Events
Interviews
Live
More
Learn
Training
Career
Members
Videos
News
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Alphabet Pattern in Python
WhatsApp
Sourabh Somani
2y
13.8
k
0
3
25
Blog
Code:
str="";
for Row in range(0,7):
for Col in range(0,7):
if ((Col == 1 and (Row != 0 and Row != 6)) or ((Row == 0 or Row == 6) and (Col > 1 and Col < 5)) or (Col == 5 and (Row == 1 or Row == 5))):
str=str+"*"
else:
str=str+" "
str=str+"\n"
print(str);
Output:
Up Next
Alphabet Pattern 'B' in Python
Ebook Download
View all
Python Overview
Read by 710 people
Download Now!
Learn
View all
Membership not found