Isosceles Triangle

  1. Write a Python program to print out an isosceles triangle (a triangle with two equal sides).
  2. 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
     *
    ***
   *****
  *******
 *********
***********