PY
py
1
2
3
4
5
6
7
8
9
# Created by Nicola Esu
for row in range(4):
for col in range(7):
if (row == 0 and col %6 == 3) or (row == 1 and col %5 == 2) or (row == 1 and col %5 == 4) or (row == 2 and col %5 == 1) or (row == 2 and col %5 == 5) or (row == 3 and col %7 != 0):
print("*", end="")
else:
print(" ", end="")
print()
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run