Files
prep-work/1- python/5-triangles-part-1/README.md
Kenneth Mendonca 57cb3981a0 Start with Python
2015-07-22 16:44:07 -04:00

18 lines
197 B
Markdown

Print a Triangle
================
Using nested for loops, print a triangle like so:
```
>>> triangle(10)
*
**
***
****
*****
******
*******
********
*********
**********
```