Bonsoir, pourriez vous m'aidez à faire la question 2 où il faut compléter l'origine_majoritaire sur python, s'il vous plaît.
La fonction proches_voisin n'étant pas défini le voici :

import math
def proches_voisins(echantillon,mot_mystere) :
def distance(mot) : # renvois la distance entre mot et mot_mystere
return math.sqrt( # formule pour calculer la distance
(len(mot)-len(mot_mystere))**2+
(nb_voyelles(mot)-nv_voyelles(mot_mystere))**2
)
mots_tries=sorted(echantillon,key=distance)
voisins = {}
for i in range(4):
mot = mots_tries[i]
voisins[mot]=echantillon[mot]
return voisins

Merci
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Lista de comentários


Helpful Social

Copyright © 2024 ELIBRARY.TIPS - All rights reserved.