Question: List days _ list is created with the first four strings read from input. Remove strings ' 4 ' and ' 1 0 ' from

List days_list is created with the first four strings read from input. Remove strings '4' and '10' from days_list. Then, read the last
two strings from input and append the two strings to days_list, respectively.
Click here to show example
Ex: If the input is:
3
10
5
4
8
12
then the output is:
['3','5','8','12']
1 # Reads four values from input into days_list
days_list [input(), input(), input(), input()]
''' Your code goes here '''
print(days_list) Python Coding please
 List days_list is created with the first four strings read from

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!