Medium
Python Code Explainer
Explain a Python function line by line.
📝 Contenu du Prompt
Explain the following Python code snippet line by line as if you were teaching a beginner programmer. Describe what each function and variable does: def calculate_sum(a, b): result = a + b return result