Write basic Python code to solve a problem.
Implement sum_numbers(numbers), which receives a list of integers and returns the sum of its elements. Return 0 when the list is empty.
sum_numbers(numbers)
0
def sum_numbers(numbers):
Your question is Basic Python Coding. Start with the requirements in the Question tab.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.