From 2d2b7b9f5731dc5c7bda29c917a6cc5f17b5160e Mon Sep 17 00:00:00 2001 From: Christian Kolset Date: Thu, 24 Apr 2025 17:39:37 -0600 Subject: Updated markdown formatting for latex conversion. --- tutorials/module_1/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tutorials/module_1/functions.md') 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 -- cgit v1.2.3