add restimation du temps de rédaction
This commit is contained in:
parent
262959b31f
commit
6607af69c9
@ -74,6 +74,9 @@ def genre_de_livre(nombre_de_mots):
|
||||
def temps_de_lecture(nombre_de_signes):
|
||||
return round(nombre_de_signes / 80 * 60)
|
||||
|
||||
def temps_de_redaction(nombre_de_signes, mots_par_minute):
|
||||
return round(nombre_de_signes / mots_par_minute * 60)
|
||||
|
||||
def format_time(seconds):
|
||||
minutes, seconds = divmod(seconds, 60)
|
||||
hours, minutes = divmod(minutes, 60)
|
||||
@ -89,3 +92,4 @@ print(f"\n Total : \n\t {format_with_spaces(sum_mots)} mots.\n\t {format_with_sp
|
||||
print(f"Estimation de pages A4: {nombre_de_pages(sum_mots)} ")
|
||||
print(f"Genre de livre: {genre_de_livre(sum_mots)}")
|
||||
print(f"Estimation du temps de lecture: {forma t_time(temps_de_lecture(sum_mots))}")
|
||||
print(f"Estimation du temps de rédaction: {forma t_time(temps_de_redaction(sum_mots))}")
|
||||
|
Loading…
Reference in New Issue
Block a user