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 fb4eac5 commit 7e5e82aCopy full SHA for 7e5e82a
.learn/resets/07-Function-that-returns/app.py
@@ -0,0 +1,7 @@
1
+def dollar_to_euro(dollar_value):
2
+ return dollar_value * 0.91
3
+
4
+def euro_to_yen(euro_value):
5
+ return euro_value * 161.70
6
7
+####### ↓ YOUR CODE BELOW ↓ #######
exercises/07-Function-that-returns/app.py
@@ -5,3 +5,7 @@ def euro_to_yen(euro_value):
return euro_value * 161.70
####### ↓ YOUR CODE BELOW ↓ #######
8
+euros = dollar_to_euro(137)
9
+yenes = euro_to_yen(euros)
10
11
+print(yenes)
0 commit comments