Skip to content
Extraits de code Groupes Projets
Valider 4c77e2ac rédigé par Loris TICHADOU's avatar Loris TICHADOU
Parcourir les fichiers

Update nardco.py

parent 9ea8df21
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -82,7 +82,7 @@ def convert_seconds_to_days(seconds) :
hours = (seconds - (days * seconds_in_day)) // seconds_in_hour
minutes = (seconds - (days * seconds_in_day) - (hours * seconds_in_hour)) // seconds_in_minute
secondes = seconds - (days * seconds_in_day) - (hours * seconds_in_hour) - minutes * seconds_in_minute
return str(days) + " jours, " + str(hours) + " heures, " + str(minutes) + " minutes" + str(secondes) + " secondes"
return str(days) + " jours, " + str(hours) + " heures, " + str(minutes) + " minutes, " + str(secondes) + " secondes"
def isCommande(string):
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter