Combination of two corresponding lists (arrays).
Write a program that receives two lists containing national code and phone number and creates a new list, each element of which contains a pair of corresponding national code and phone number.
For example, if the national code list[123, 456]and phone list[0912, 0935]The output should be a similar list[(123, 0912), (456, 0935)]be