Question: Below is my code and it is in PYTHON also please use while loop IN ZY BOOKS I have to make a right hollow triangle

Below is my code and it is in PYTHON

also please use while loop

IN ZY BOOKS I have to make a right hollow triangle based on input when I run this code the triangle does print out but there are some errors I need help with

the computer is reading some white space and it's telling me to print a new line I've tried using print(' ', end = '' ) please help I will rate positively # Suggested steps are:

# 1. Display the prompt # 2. Read in the triangle size into a variable # 3. Print the triangle # This step should be further broken down! # 4. Add the code to check the user input, in case it is negative.

__________________________________________

trianglesize = int(input("Enter triangle size: ") ) if trianglesize 0. Exiting..." ) print() a=1 for row in range(1,trianglesize+1): if (row==1 or row==trianglesize or row==2): #print('* ', end = '') print("* "*row) else: b=2*a print("* " + (" ")*b + "*") a=a+1 print('', end = '' )

_______________________________________________

above code does print out perfect triangle

I JUST NEED HELP SOLVING ERROR AND SATISFYING ZYBOOKS

(CHECK POINTED ARROWS IN THE PIC)

Below is my code and it is in PYTHON also please use

Output is nearly correct, but whitespace differs. See highlights below. Special character legend Input 1 Your output Enter triangle size: / Enter triangle size: Expected output Small even number Small odd number Output is nearly correct, but whitespace differs. See highlights below. Special character legend Input 7 Enter triangle size: Your output Enter triangle size: Expected output

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!