สถานะการส่งล่าสุด: -

Combine list

Combine list

list_1 = [1, 2, 5, 6, 7]
list_2 = [1, 3, 4, 5, 8]
Example Output
[1, 2, 3, 4, 5, 6, 7, 8]

print()