Answer to Question #220944 in Python for Hari nadh babu

Question #220944

Solid Right Angled Triangle - 2

Write a Python program of Solid Right Angled Triangle - 2. It consists of two test cases


The below link contains Solid Right Angled Triangle - 2 - Question, explanation and test cases


https://drive.google.com/file/d/1kNA1MOxGcIWUHPHk-leph6neGML6Uit6/view?usp=sharing


We need all test caese can be come while code was running

1
Expert's answer
2021-08-02T07:16:56-0400
n = int(input())
for j in range(2):
    for i in range(n):
        print((' '.join(['*'] * (i + 1))).ljust(2 * n - 1))

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS