Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while currRow <= firstHalf:
- spaces = 1
- while spaces <= (firstHalf - currRow):
- print(" ", end="")
- spaces += 1
- currCol = 1
- while currCol <= (2 * currRow) - 1:
- print("*", end="")
- currCol += 1
- print()
- currRow += 1
- currRow = secondHalf
- while currRow >= 1:
- spaces = 1
- while spaces <= (secondHalf - currRow + 1):
- print(" ", end="")
- spaces += 1
- currCol = 1
- while currCol <= (2 * currRow) - 1:
- print("*", end="")
- currCol += 1
- print()
- currRow -= 1
Advertisement
Add Comment
Please, Sign In to add comment