My Fourth Blog Post
This is an example blog post.
This is the content of my fourth example blog post.
This is the content of my fourth example blog post.
This is the content of my second example blog post.
This is the content of my third example blog post.
This is the content of my first example blog post. Just trying to see how this looks on my webpage. Not much to look at here. A “work in progress” as they say.
def print_asterisk_tree(height):
for i in range(1, height + 1):
spaces = ' ' * (height - i)
asterisks = '*' * (2 * i - 1)
print(spaces + asterisks)
# Example usage:
print_asterisk_tree(5)
console.log("Hello, world!");