def right_angle(r, k): i = 1 while (i<=r): j = 1 while (j<=i): print(k, end=' ') j = j+1 i = i + 1 print() right_angle(5, '*')
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment