diff options
| author | Christian Kolset <christian.kolset@gmail.com> | 2025-04-24 17:39:37 -0600 |
|---|---|---|
| committer | Christian Kolset <christian.kolset@gmail.com> | 2025-04-24 17:39:37 -0600 |
| commit | 2d2b7b9f5731dc5c7bda29c917a6cc5f17b5160e (patch) | |
| tree | b566dc6e44f9e63abc94a18f6697010ea981ab89 /tutorials/module_1/functions.md | |
| parent | e53c35223bed9a32f1e9cd3fe75caf344d4b5c7e (diff) | |
Updated markdown formatting for latex conversion.
Diffstat (limited to 'tutorials/module_1/functions.md')
| -rw-r--r-- | tutorials/module_1/functions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorials/module_1/functions.md b/tutorials/module_1/functions.md index 8235fe3..54c956d 100644 --- a/tutorials/module_1/functions.md +++ b/tutorials/module_1/functions.md @@ -52,7 +52,7 @@ In case you want to return multiple output variable from a single function we wi ## Summary ```python -def function_name(argument1, argument2, argument3) +def function_name(argument1, argument2, argument3): output1 = argument1 * argument2 - argument3 output2 = argument2 + argument3 return output1, output2 |
