Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question 2 Ask the user to input a positive integer n , and print a textual image of an hourglass made of 2n lines with

Question 2

Ask the user to input a positive integer n, and print a textual image of an hourglass

made of 2n lines with asterisks.

For example, if n=4, the program should print:

******* ***** *** * * *** ***** ******* 

And this is the code i wrote:

rows=int(input("please enter a positive integer:"))

def pyramid1(rows): for i in reversed(list(range(rows))): print((' ' * ( rows-i-1 ) + '*' * ( 2 * i + 1))) print(pyramid1(rows)) def pyramid2(rows): for i in range(rows): print((' ' * ( rows- i - 1 ) + '*' * ( 2 * i + 1))) print(pyramid2(rows))

But it print "none" twice, first time after printing the upside-down pyramid, second time after printing the bottom pyramid. how do i fix it so it dont print none anymore?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Main Memory Database Systems

Authors: Frans Faerber, Alfons Kemper, Per-Åke Alfons

1st Edition

1680833243, 978-1680833249

More Books

Students also viewed these Databases questions

Question

Different types of Grading?

Answered: 1 week ago

Question

Explain the functions of financial management.

Answered: 1 week ago

Question

HOW MANY TOTAL WORLD WAR?

Answered: 1 week ago

Question

Discuss the scope of financial management.

Answered: 1 week ago