def make_triangle(n, ch): """precondition n > 0 is a integer ch is a one-character string postcondition: returns a string that will print a triangle of copies of ch with one copy in the first row, two in the second, etc """ print(make_triangle(5, "$"))