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
0
Explanation:
A = eval(input ("Enters list"))
B = eval(input("Enter another list"))
l = A.extend(B)
print(l)
Similar questions