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 4da02cd commit c3c0cffCopy full SHA for c3c0cff
exercises/12-Map_a_list/app.py
@@ -1,9 +1,8 @@
1
-Celsius_values = [-2,34,56,-10]
2
-
3
+celsius_values = [-2, 34, 56, -10]
4
5
def fahrenheit_values(x):
6
-# the magic go here:
+ # The magic happens here
+
7
8
-result = list(map(fahrenheit_values, Celsius_values))
+result = list(map(fahrenheit_values, celsius_values))
9
print(result)
0 commit comments