Menu
Coddy logo textTech

Recap - Sigma Function

Part of the Fundamentals section of Coddy's Python journey — lesson 46 of 77.

challenge icon

Challenge

Easy

Write a function named sigma with one argument that represents a number n.

The function will return the sum of all the numbers from 1 to n (including).

For example, for sigma(5), the function will return 15, because 15 = 1 + 2 + 3 + 4 + 5.

Important! You don't need to call the function we do that for you behind the scenes in a function type challenges.

Note: The result must be an integer — the sum of whole numbers is always a whole number.

Try it yourself

def sigma(n):

All lessons in Fundamentals