update,
This commit is contained in:
10
max015/T11/P03.py
Normal file
10
max015/T11/P03.py
Normal file
@@ -0,0 +1,10 @@
|
||||
def my_function(n):
|
||||
if n == 1:
|
||||
return
|
||||
|
||||
for i in range(1,n+1):
|
||||
for j in range(1, n+1):
|
||||
print("*", end="")
|
||||
break
|
||||
|
||||
my_function(5)
|
Reference in New Issue
Block a user