Skip to content

Commit c3c0cff

Browse files
authored
Update app.py
1 parent 4da02cd commit c3c0cff

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

exercises/12-Map_a_list/app.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
Celsius_values = [-2,34,56,-10]
2-
3-
1+
celsius_values = [-2, 34, 56, -10]
42

53
def fahrenheit_values(x):
6-
# the magic go here:
4+
# The magic happens here
5+
76

8-
result = list(map(fahrenheit_values, Celsius_values))
7+
result = list(map(fahrenheit_values, celsius_values))
98
print(result)

0 commit comments

Comments
 (0)