Posts by bagre • 33 points
1 post
-
2
votes2
answers456
viewsQ: Draw triangle with repetition structure in Python
I need to draw a triangle of the shape: ....1 ...12 ..123 .1234 12345 I should use repeating structures. From what I understood as a hint, I should use two concatenated structures. I’m a beginner…