2021-05-29 19:48:13 +02:00
|
|
|
# #############################################################################
|
|
|
|
# Fonctions universelles
|
|
|
|
# #############################################################################
|
|
|
|
|
|
|
|
|
|
|
|
def choices_length(choices):
|
|
|
|
"""Renvoie la longueur maximale des choix de choices"""
|
2024-07-10 13:52:24 +02:00
|
|
|
|
|
|
|
return max(len(c[0]) for c in choices)
|