Computer Science, asked by 2shrestha28, 7 months ago

Write code to switch the order of the winners list so that it is now Z to A. Assign this list to the variable z_winners.
winners = ['Alice Munro', 'Alvin E. Roth', 'Kazuo Ishiguro', 'Malala Yousafzai', 'Rainer Weiss', 'Youyou Tu']
(PYTHON)

Answers

Answered by krish4686
1

Answer:

winners = ['Alice Munro', 'Alvin E. Roth', 'Kazuo Ishiguro', 'Malala Yousafzai', 'Rainer Weiss', 'Youyou Tu']

winners.sort(reverse=True)

z_winners = winners

Explanation:

Hope it's helpful to you

Answered by Anonymous
2

Kindly Mark as Brainliest and Follow Me.

Attachments:
Similar questions