We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c9eca0 commit 86bdb26Copy full SHA for 86bdb26
exercises/12.1-more_mapping/solution.hide.py
@@ -0,0 +1,9 @@
1
+my_numbers = [23,234,345,4356234,243,43,56,2]
2
+
3
+# Your code here
4
+def multiply_by_three(number):
5
+ return number * 3
6
7
+new_list = list(map(multiply_by_three, my_numbers))
8
9
+print(new_list)
0 commit comments