Solution Exercise 16: randomly mixes the elements of a given list
Exercise 16 Write a program in python that randomly mixes the elements of a given list. Solution from random import shufflelaptop = ['HP', 'Acer', 'Dell', 'Lenovo', 'Thomson', 'Asus']# mix the…