Skip to content

Commit 76b72f5

Browse files
authored
n x n patten
1 parent 9630348 commit 76b72f5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Python/Patten/File-1.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
n = int(input("Enter Range: "))
2+
3+
for i in range(n):
4+
for j in range(n):
5+
print("*", end=" ")
6+
print()

0 commit comments

Comments
 (0)