We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2846d49 commit 6c5b90dCopy full SHA for 6c5b90d
python/tips.py
@@ -4,3 +4,8 @@
4
n = 10
5
for i in range(n):
6
print(' ' * (n-i-1) + '*' * (2*i+1))
7
+print()
8
+
9
+m = 5
10
+for i in range(m):
11
+ print("* " * m if i in [0, m-1] else "* " + " " * (m-2) + "*")
0 commit comments