We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39ec257 commit 15ce2f6Copy full SHA for 15ce2f6
character_pyramid.py
@@ -15,7 +15,7 @@ def create_pyramid(character, size):
15
if increment:
16
print character * loop_counter
17
loop_counter += 1
18
- if (loop_counter == size):
+ if loop_counter == size:
19
# You've reached the top, start heading down the other side
20
21
increment = 0
0 commit comments