Introduction
Software Requirement
Python3.5.2 or above
Simple programming
- str="";
- for Row in range(0,7):
- for Col in range(0,7):
- if (Col == 1 or ((Row == 0 or Row == 3 or Row == 6) and (Col < 5 and Col > 1)) or (Col == 5 and (Row != 0 and Row != 3 and Row != 6))) :
- str=str+"*"
- else:
- str=str+" "
- str=str+"\n"
- print(str);
Output

Sourabh SomaniPosted Jun 16, 2017, 4:18 AM
Copied From my Blog. http://www.c-sharpcorner.com/blogs/alphabet-pattern-sharp39bsharp39-in-python
Anu VPosted Jul 25, 2016, 8:19 AM
Nice
kalu singh raoPosted Jul 25, 2016, 8:09 AM
Nice