Hello WorldPublished Thu, Dec 8, 2016 by Estimated reading time: 1 minThis is my first blog. Here’s a line of python to generate an asterisk triangle:>>> print("\n".join(["*" * i for i in range(int(input()) + 1)])) 5 * ** *** **** *****