Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 1.11 KB

README.md

File metadata and controls

39 lines (23 loc) · 1.11 KB

Printing to the Console

Instructions

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.

Example Output

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:

Test Your Code

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.

Solution

https://repl.it/@appbrewery/day-1-1-solution