0
I started studying Python now and came across this mistake
tuple parameter unpacking is not supported in python 3
Below is the excerpt of the code:
#cria uma lista(user_id, numero_de_amigos)
numero_de_amigos_by_id=[(usuario["id"], numero_de_amigos(usuario))for usuario in usuarios]
sorted(numero_de_amigos_by_id, key=lambda (usuario_id, numero_de_amigos):numero_de_amigos, reverse=True)
How do I resolve this? the error is in key=lambda (usuario_id, numero_de_amigos)