fonctions.py

Created by cent20

Created on October 19, 2021

260 Bytes

TD 07 - Les fonctions en python


def cube(x):
  y = x**3
  return y
  
def moyenne(a, b):
  m = (a+b) / 2
  return m

def table(n):
  t = (0, n, 2*n, 3*n, 4*n, 5*n, 6*n, 7*n, 8*n, 9*n, 10*n)
  return t
  
def somme(n):
  s = 0
  for nb in range(n+1):
    s = s + nb
  return s