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("\n%-20s %-15s\n" %("Contestant Name", "Votes Casted"))
# Printing results
for contestant in contestants:
 print("%-23s %-15d" %(contestant, contestants[contestant]))