Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
help with assignment
#5
(Nov-17-2018, 11:19 PM)ichabod801 Wrote: You don't really need print_segment. You don't want to loop there, you just want the print statement. So get rid of print_segment and just replace it with the print statement. Then your loop in print_spruce should start with 1. Then you are just missing one bit you should be able to figure out yourself.

I did this...

print("Write the size of the spruce:")
n = int(input())
print_spruce(n)
 
def print_spruce(size):
    for i in range(1, size+1, 2):
       print(i, size)
And then got this...

Write the size of the spruce:
4
Traceback (most recent call last):
  File "assign.py", line 3, in <module>
    print_spruce(n)
NameError: name 'print_spruce' is not defined
What am I doing wrong?

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

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

print_spruce(n)
terminal:
Write the size of the spruce:
9
Traceback (most recent call last):
  File "assign.py", line 3, in <module>
    print_spruce(n)
NameError: name 'print_spruce' is not defined
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