di = {"student":"10/30/1984", "student2":"11/16/2020"}
name = input("What is your name? ")
if name in di:
print(di[name])
else:
print("Your name is not in the dictionary.")
You can change the values inside the dictionary. I hope this helps!
7.2m questions
9.6m answers