Skip to content

Commit ba90677

Browse files
committed
extra function exercises included
1 parent 8e34fde commit ba90677

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

010_comments.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
# yourself if you like.
8585

8686
# Type your name as a comment on the next line.
87+
#Nana
8788

8889
# Hint: if you're on a Mac, type opt + 3 to get a #
8990

011_identity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def just_return_it(num):
66
return num
77

88
# This is a function. A function is a reusable block of
9-
# code.
9+
# code.
1010

1111
# Think of a function as a little machine. It takes an
1212
# input, processes it in some way, and then returns an

029_lists.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
# @TASK Try making your own here:
2727

28-
your_list = ...
28+
your_list = [1, 3, 5, 7, 9]
2929
print(your_list)
3030

3131
# @TASK and print it out by running:

0 commit comments

Comments
 (0)