i have this code so far
teamNames = []
teams = {}
while True:
print("Enter team name " + str(len(teamNames) + 1) + (" or press enter to stop."))
name = input()
if name == "":
break
teamNames = teamNames + [name]
print("The team names are ")
for name in teamNames:
print(" " + name)
but now i want to put the teamNames into the blank dictionary created, called teams, with a value of zero, but i dont know how.