forked from avinashn/programminginpython.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPatternF.py
More file actions
38 lines (28 loc) · 668 Bytes
/
PatternF.py
File metadata and controls
38 lines (28 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
__author__ = 'Avinash'
# Python3 program to print alphabet F pattern
# *********
# *
# *
# *
# *********
# *
# *
# *
def print_pattern(n):
# Outer for loop for number of rows
for row in range(n):
# Inner for loop columns
for column in range(n):
# prints first and middle row
if ((row == 0 or row == n // 2) or
# prints first column
column == 0):
print("*", end="")
else:
print(" ", end="")
print()
size = int(input("Enter size: \t"))
if size < 8:
print("Enter a size greater than 8")
else:
print_pattern(size)