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 e75d8ee commit 9cf65ffCopy full SHA for 9cf65ff
exercicio-15/willidert/exercicio.py
@@ -0,0 +1,6 @@
1
+def celsius2fah(c):
2
+ return c * 9 / 5 + 32
3
+
4
5
+def fah2celsius(f):
6
+ return (f - 32) * 5 / 9
0 commit comments