* Write a program texttriangle.py. in python
This, too, is not a graphics program. Prompt the user
for a small positive integer value, that I’ll call n. Then use a
for-loop with a range function call to make a triangular
arrangement of ‘#’characters, with n ‘#’ characters in the last
line. Hint: [5]
Then leave a blank line. Then make a similar triangle, except
start with the line with n ‘#’ characters. To make the
second triangle, you can use...