Home /
Expert Answers /
Computer Science /
help-please-answer-in-python-nbsp-3-8-nbsp-lab-read-values-into-a-list-instructor-note-this-is-pa429
(Solved): Help Please answer in Python:
3.8 LAB: Read values into a list
Instructor note: This is ...
Help Please answer in Python:
3.8 LAB: Read values into a list
Instructor note: This is the Unit \( 3.8 \) lab assignment for the zyBooks materials. Code hints: while user_input \( >0 \) : #This is the number that is greater than 0 from the list that is entered. print(user_numbers) #Prints out the numbers greater than zero that are inputted at the top part from zyBooks. Write a program that reads a list of integers into a list as long as the integers are greater than zero, then outputs the values of the list. Ex: If the input is: 10 5 3 21 \( -6 \) the output is: \[ [10,5,3,21,2] \] You can assume that the list of integers will have at least 2 values.