Start with Python
This commit is contained in:
20
1- python/6-triangles-part-2/README.md
Normal file
20
1- python/6-triangles-part-2/README.md
Normal file
@ -0,0 +1,20 @@
|
||||
Print a Mario End of Level Stairs
|
||||
=================================
|
||||
|
||||
Remember this from Mario?
|
||||

|
||||
|
||||
Create it!
|
||||
```
|
||||
>>> triangle(10)
|
||||
*
|
||||
**
|
||||
***
|
||||
****
|
||||
*****
|
||||
******
|
||||
*******
|
||||
********
|
||||
*********
|
||||
**********
|
||||
```
|
2
1- python/6-triangles-part-2/triangle.py
Normal file
2
1- python/6-triangles-part-2/triangle.py
Normal file
@ -0,0 +1,2 @@
|
||||
def mario_triangle(num):
|
||||
pass
|
Reference in New Issue
Block a user