-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path013_add_two.py
37 lines (24 loc) · 897 Bytes
/
013_add_two.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from lib.helpers import check_that_these_are_equal
# Video alternative: https://vimeo.com/954334235/902b0b036d#t=84
# Now you try. Here's an exercise for you:
#
# @TASK: Write a function called `add_two` that:
#
# * Takes a number as input
# * Adds two to it
# * Returns the result
# YOUR FUNCTION GOES BELOW THIS LINE
# YOUR FUNCTION GOES ABOVE THIS LINE
# @TASK: To check your work, run this in the terminal:
# python 013_add_two.py
# This will run the test at the bottom of this file.
# If you have trouble, look back at `add_one` _very_ closely, character by
# character, to see if you can see any differences to your version. Pay
# particular attention to the `:` at the end of the first line, and the spacing
# at the start of some of the lines.
print("Function: add_two")
check_that_these_are_equal(
add_two(6),
8
)
# When you're done, move on to 014_multiply_numbers.py