Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
help with assignment
#3
Here's what I've done so far...

def print_segment(n, total_width):
    for size in range(1, n+1, 2):
        print((size * "X").center(total_width))

def print_spruce(size):
    for i in range(3, size+1, 2):
       print_segment(i, size)

print("Write the size of the spruce:")
n = int(input())
print_spruce(n)
Reply


Messages In This Thread
help with assignment - by Mof44 - Nov-17-2018, 10:22 PM
RE: help with assignment - by Larz60+ - Nov-17-2018, 10:37 PM
RE: help with assignment - by Mof44 - Nov-17-2018, 10:44 PM
RE: help with assignment - by ichabod801 - Nov-17-2018, 11:19 PM
RE: help with assignment - by Mof44 - Nov-18-2018, 06:22 AM
RE: help with assignment - by buran - Nov-18-2018, 08:03 AM
RE: help with assignment - by Mof44 - Nov-18-2018, 08:31 AM
RE: help with assignment - by Mof44 - Nov-18-2018, 10:17 AM
RE: help with assignment - by ichabod801 - Nov-18-2018, 04:26 PM
RE: help with assignment - by Larz60+ - Nov-18-2018, 11:58 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020