Create the function initialize_list(n, value) that takes as a parameter an integer n and a value. It creates 4 lists with length 10 where the initializers are taken from the list [ ‘*’, 10, 12.0 , -1], i.e. one list is all *s, another all 10’s etc. (Expected output is shown in the image attached)
Extracted text: *** Testing initialize_list (n, value)*** ['*', '*', '*', '*', '*', '*', '*', '*', '*', '*'] [10, 10, 10, 10, 10, 10, 10, 10, 10, 10] [12.0, 12.0, 12.0, 12.0, 12.0, 12.0, 12.0, 12.0, 12.0, 12.0] [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1]