Computer Science, asked by garima23agarwal, 6 months ago

Store ‘n’ nos. in array A[ ] and 5 nos. in array B[ ] and merge them into array C[ ]
& print the numbers from third array.

Answers

Answered by RuwaisnZaid
0

Explanation:

A = eval(input ("Enters list"))

B = eval(input("Enter another list"))

l = A.extend(B)

print(l)

Similar questions