TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Print C, D, E Style In Python
Sr Karthiga
Jul 29
2016
Code
750
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
style.rar
E Style
str=
""
;
for
Row
in
range(0,7):
for
Col
in
range(0,7):
if
(Col == 1 or ((Row == 0 or Row == 6) and (Col > 1 and Col < 6)) or (Row == 3 and Col > 1 and Col < 5)):
str=str+
"*"
else
:
str=str+
" "
str=str+
"\n"
print(str);
D Style
str=
""
;
for
Row
in
range(0,7):
for
Col
in
range(0,7):
if
(Col == 1 or ((Row == 0 or Row == 6) and (Col > 2 and Col < 4)) or (Col == 5 and Row != 0 and Row != 6)):
str=str+
"*"
else
:
str=str+
" "
str=str+
"\n"
print(str);
C Style
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);
E style
Python
C style
D style