Page 1 of 1

Write a Python program that reads integer numbers from the user, one by one, and appends them to a list IF the number in

Posted: Mon May 09, 2022 5:54 am
by answerhappygod
Write a Python program that reads integer numbers from the user,
one by one, and appends them to a list IF the
number input by the user is NOT already contained in the list. When
the list contains 10 numbers, the program should
display the contents of the list, then the sum of the numbers, and
then the average of the numbers contained in the list.
Your user interface should be easy to use, and offer instructions
to the user when appropriate.