9 lines
321 B
Python
9 lines
321 B
Python
# #############################################################################
|
|
# Fonctions universelles
|
|
# #############################################################################
|
|
|
|
|
|
def choices_length(choices):
|
|
"""Renvoie la longueur maximale des choix de choices"""
|
|
|
|
return max(len(c[0]) for c in choices)
|