We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83a81cb commit 88f2469Copy full SHA for 88f2469
1 file changed
Task/pattern.py
@@ -354,3 +354,17 @@ def decide_number(n, k):
354
for j in range(0, n - i):
355
print(i, end=" ")
356
print()
357
+
358
359
360
+print("--------------------------------------------------------")
361
362
+#1. Some Generative Art
363
+# import sys
364
+# import random
365
+# chars="\|/"
366
+# def draw(rows, columns):
367
+# for r in rows:
368
+# print(''.join(random.choice(chars) for _ in range(columns)))
369
370
+# draw(10,20)
0 commit comments