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!
9.5m questions
12.2m answers