Question: List years_list1 is created with the first two integers read from input. Then, list years_list2 is created with the last two integers read from

List years_list1 is created with the first two integers read from input. Then, list years_list2 is created with the last two integers read from input. Create a list called years_list3 that concatenates years_list1 to the end of years_list2. Click here to show example 1 # Reads two values from input into years_list1 2 years_list1 [int(input()), int(input())] 3 # Reads two values from input into years_list2 4 years_list2 [int(input()), int(input())] = = 6 ''enter code missing code here' 7 8 print(years_list3) 2 3 4
Step by Step Solution
There are 3 Steps involved in it
1 Problem Statement You are asked to concatenate two lists yearslist1 and yearslist2 to create a new ... View full answer
Get step-by-step solutions from verified subject matter experts
