This commit is contained in:
louiscklaw
2025-01-31 21:15:04 +08:00
parent 3337cc3d1e
commit acf9d862ff
324 changed files with 43162 additions and 0 deletions

10
max015/T11/P03.py Normal file
View 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)