Answer:
# Initialize a dictionary with the keys 
contestants = {"Darci Lynne":0, "Angelica Hale":0, "Angelina Green":0}; 
 
# Repeatedly prompt the user for a contestant name to vote for 
while True: 
 
 # Prompting user for contestant name 
 cName = input("Enter contestant name to vote: "); 
 
 # Checking for Done 
 if cName.lower() == "done": 
 break; 
 
 # Checking in dictionary 
 if cName in contestants.keys(): 
 # Updating vote value 
 contestants[cName] += 1 
 # New entry 
 else: 
 contestants[cName] = 1 
 
# Printing header 
print("\\%-20s %-15s\\" %("Contestant Name", "Votes Casted")) 
 
# Printing results 
for contestant in contestants: 
 print("%-23s %-15d" %(contestant, contestants[contestant]))