calcula.py

Created by niz-moussatat

Created on March 02, 2022

148 Bytes


def calculA() :
  nbr = 0
  compteur = 0
  for i in range(100) :
    nbr = nbr + i
    compteur = compteur + 1
  return nbr, compteur