Created
April 22, 2021 22:10
-
-
Save Zalasyu/d6f76bb4f9561a6c50c8257746c4cf79 to your computer and use it in GitHub Desktop.
Revisions
-
Zalasyu created this gist
Apr 22, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ # A primitive calcuator simulator def multiply(num_1, num_2): """Returns the product of two numbers""" return num_1 * num_2 def add(num_1, num_2): """Returns the sum of two numbers""" return num_1 + num_2 result = multiply(3, 5) print(f'Here is your result {result}') This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ import calc