Skip to content

Commit d9af549

Browse files
Add files via upload
1 parent 34cc84d commit d9af549

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
for row in range(7):
2+
for col in range(5):
3+
if (col==0) or ((row==0 or row==3) and col>0):
4+
print("*",end="")
5+
else:
6+
print(end=" ")
7+
print()

0 commit comments

Comments
 (0)