Advertisement
elcocodrilotito

n palabras

Dec 12th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. def n_palabras(d,n): #d=diccionario
  2.     lista=[]
  3.     for i in d:
  4.         if d[i]==n:
  5.             lista.append(i)
  6.     return lista
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement