Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
help with assignment
#7
Oh my god. Thanks a lot.

Number of Xs in the penultimate line ... p
entered numberof the user .... n
total number of the lines... t

So now I have two more 'issues':
- get one line more than the entered number from the user (example: entered number(n) of the user is 5, I got 6 lines.)

- modify the range (?) so that the number of the X in the last is 1. Should I use while loop here? 'When you came to the number of Xs > n+4, display number of Xs as in the first line.

def print_spruce(n):
    for size in range(1, n+5, 2):
        print((size * "X").center(n+5))
 
n = int(input("Write the size of the spruce:"))
print_spruce(n)
terminal:

Write the size of the spruce:5
    X
   XXX
  XXXXX
 XXXXXXX
XXXXXXXXX
The 'odd lines' must be blank.
And the last odd line must be same as the first line.

Odd lines must be blank = spacing between lines with Xs. So can I use '\n '?

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

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

 File "assign.py", line 4
    for x in range(1, n+5, 2):print "line \n"
                                            ^
IndentationError: unindent does not match any outer indentation level
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