Question: Using python 2. Write a function called triangle that takes an integer size as a parameter and prints a size 2-1 wide by size tall
Using python

2. Write a function called triangle that takes an integer size as a parameter and prints a size 2-1 wide by size tall triangle of numbers. See example calls below: triangle(0) triangle(1) triangle(3) Call Example Output triangle(5) 123456789 2345678 12345678901 234567890 3456789 15678 12345 456 567 05 The start number increases by one on each line. The first line contains no leading spaces and one additional leading space is added per line. Notice that after 9, the numbers wrap around back to 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
