= 5 a
NB Test
NB Test
# Show code block but not the output
def add_number(x, y):
return x + y
print(f"a is {a}")
1) add_number(a,
6
# Show code block and the output
print(f"The result of adding two to {a} is {add_number(a, 2)}")
2) add_number(a,
6
# Don't show code block but show the output
print(f"The result of adding three to {a} is {add_number(a,3)}")
3) add_number(a,
6
# Show code block but hide the last line (function call) and show the output
print(f"The result of adding four to {a} is {add_number(a, 4)}")
5) add_number(a,
6