Question: Write some code that, given a variable n which contains a positive integer, generates a hollow right-angled triangle, as shown in the output below. Hint:
Write some code that, given a variable n which contains a positive integer, generates a hollow right-angled triangle, as shown in the output below. Hint: The top and bottom of the triangle must be drawn separately, since they do not follow the same pattern as the lines between (spaces, then an asterisk, then spaces, and then another asterisk). Sample Output for Part 4, for n == 7: * *** * * * * * * * ******* Sample Output for Part 4, for n == 13: * ** * * * * * * * * * * * * * * * * * * * * *************
They should be hollow triangles , on the right side not on the left.
PYTHON 3.6
something like this
q q
q q
qqqqq
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
