Create a function like the pyramid function that does the upside-down version. Your function invertedPyramid should also take an input character and print an inverted pyramid.

What will be an ideal response?


```
def invertedPyramid(char): space = " "
print 9*char
print space ,7*char
print 2*space ,5*char
print 3*space ,3*char
print 4*space,char
```

Computer Science & Information Technology

You might also like to view...

The reciprocal of 0 is __________.

Fill in the blank(s) with correct word

Computer Science & Information Technology

____________________ ensure that devices from one vendor will function with those from other vendors.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

In a ____, all rows from the table on the left (the table listed first in the query) will be included regardless of whether they match rows from the table on the right (the table listed second in the query).

A. left inner join B. left outer join C. right inner join D. right outer join

Computer Science & Information Technology

The HTML5 ___________tag groups content appearing at the bottom of a page.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology