Isosceles Triangle
- Write a Python program to print out an
isosceles triangle (a triangle with two equal sides).
- Your program will prompt the user to input an integer, which will
be the height of the isosceles triangle.
Your program may run as follows:
Height? 3
*
***
*****
Or
Height? 6
*
***
*****
*******
*********
***********