In the python:
For questions 1, 2 and 4: Ask the user to enter the size of a list. Fill the list with random
numbers 0-9 and print the list.
1- (8 points) luckyNumbers.py: Find the sum of the numbers in a list, except the number 7 is
considered unlucky, so we ignore it and do not include 7's in the sum. Print the list, the sum of
lucky numbers that are not 7, and the number of 7's found in the list.
Sample run:
Enter the number of numbers to create : 6
Numbers : [6, 8, 4, 6, 6, 6]
Found 0 sevens.
Sum of lucky numbers = 36
Sample run:
Enter the number of numbers to create : 6
Numbers : [4, 2, 7, 3, 7, 7]
Found 3 sevens.
Sum of lucky numbers = 9
In the python: For questions 1, 2 and 4: Ask the user to enter the size...