This commit is contained in:
bluepython508
2024-01-22 10:56:12 +00:00
parent d320a956f8
commit dc42625cf1
20 changed files with 293 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
def l(n=9):
for x in range(1, n):
print(" " * (x % 2), "*")
def r(n=5):
for x in range(n, -1, -1):
print("*" * (x * 2 + 1))