Computer Science, asked by RKOGOLD, 4 months ago

Write a program to create a dictionary containing names of competition winner students as keys and number of their wins as values​

Answers

Answered by jai696
9

\large\mathsf\color{pink}{Solution\: using\: python\: 3}

names = ["Akshita", "Palak", "Chamanlal"]

scores = [69, 61, 59]

winners = {names[i]: scores[i] for i in range(len(names))}

print(winners)

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions