Good afternoon guys. I have been learning a lot C and C ++, and the part also python. It confuses me a lot of syntaxes at times, because I often think of C and get confused in python. In the case of the python loop, I would like to store data within a vector, and print the data, but it is giving some errors. Help me ae: c
estudantes = []
i=0
while i < 4:
estudantes[i] = input("Digite o nome do aluno: ")
i+=1
while i<len(estudantes):
print("Aluno {}: {}".format(i, estudantes[i]))
i+=1