> If you have not yet, log in to <https://www.onlineide.pro/> and create a Python project.
> In that project, make a new file for each coding challenge.
You can "print" things to the console using the `print()` function:
```python
print("Hey there 👋")
```
Running the above code will produce this output:
```plaintext
Hey there 👋
```
**Note:** You can also leave *comments* in your code by using the `#` symbol.
```python
print("My name is Mr. Hoff") # This will print my name
```
---
# Instructions
Using the `print()` function, write `Hello World!` to the console.
Then, figure out how to print a blank line.
Us blank lines to add space between each of the following challenges:
**Challenge 1**
> Create a pattern in the console like the following:
> ```plaintext
> 1
> 1 1
> 1 2 1
> 1 3 3 1
> 1 4 6 4 1
> ```
**Challenge 2**
> Print your initials in the console, but print them in block letters like this:
> ```plaintext
> BBBBBB H H
> B B H H
> B B H H
> BBBBB HHHHHHH
> B B H H
> B B H H
> BBBBBB H H
> ```
**Challenge 3**
> Print a picture of someone in the class using letters, numbers, and symbols.
> Have someone guess who it is and try again if they get it wrong.