salaire.py

Created by elodie-gamot

Created on June 10, 2022

118 Bytes

Utilisation classique d’une boucle while.


from math import *

def voiture():
  S=0
  n=0
  while S<17250:
    S+=450
    n+=1
  return n%12,n//12