Question: write in python In this program you will let the user fill two different lists with as many values as many integers as they want.

write in python
In this program you will let the user fill two different lists with as many values as many integers as they want. Assume an individual list will not have any repeat values. Once the lists are filled, you will then print the following stats: - Which list has the larger sum and what that value is - Which list has the larger average and what that value is - How many values appear in both lists - Whether or not the lists are palindromes Example run: Enter a value for the first list: 5 Are you done? (yY):n Enter a value for the first list: 10 Are you done? (yy):n Enter a value for the first list: 25 Are you done? (yY):y Enter a value for the second list: 2 Are you done? (yY):n Enter a value for the second list: 8 Are you done? (yy):n Enter a value for the second list: 5 Are you done? (yY):n Enter a value for the second list: 0 Are you done? (yY):y List statistics: The first list has the larger sum of 40 The first list. has the larger average of 13.3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
