Write a program in main.py that prints the some notes from the previous lesson using what you have learnt about the Python print function.
Warning: The output in your program should match the example output shown below exactly, character for character, even spaces and symbols should be identical, otherwise the tests won't pass.
After you have written your code, you should run your program and it should print the following:
Day 1 - Python Print Function
The function is declared like this:
print('what to print')
e.g. When you hit run, this is what should happen:
Before checking the solution, try copy-pasting your code into this repl:
https://repl.it/@appbrewery/day-1-1-test-your-code
This repl includes my testing code that will check if your code meets this assignment's objectives.