-3
Hello, my problem is this: I have a dictionary called People: pessoas = {}
that allows me to register the name and age of the person. I made a input
asking how many people the user would like to register: quantidade = int(input("Quantas pessoas serão cadastradas? "))
.
After that he executes a for
: for a in range(0, quantidade):
.
So far so good... I ask the name and age of the person to after that I make a .append()
in my dictionary and it returns me the following error:
AttributeError: 'dict' object has no attribute 'append'
I really don’t understand why the mistake. Can anyone explain?
The complete code:
pessoas = {}
quantidade = int(input("Quantas pessoas serão cadastradas? "))
for a in range(0, quantidade):
nome = input(f"Digite o nome da pessoa {a + 1}: ")
idade = input(f"Digite a idade de {nome}: ")
pessoas.append(nome)
pessoas.append(idade)