Q.1: If you have the two lists below:
L1 = ['Iraq', 'Japan', 'Australia', 'Egypt', 'Turkey']
L2 = ['Sydney', 'Istanbul', 'Tokyo', 'Baghdad', 'Cairo']
Your program should be able to print the final list = [ ['Iraq', 'Baghdad'], ['Japan', 'Tokyo'], ['Australia','Sydney'], ['Egypt', 'Cairo'], ['Turkey', 'Istanbul'] ]
Q.2: If you have the list in this form: L = [['Name', 'Gender']], and your list is:
my_List= [ ['Ali', 'Male'], ['Maha', 'Female'], ['Laith','Male'], ['Lamiaa', 'Female'], ['Zainab', 'Female'], ['Lena','Female'], ['Hanan', 'Female'] ]
Your program should be able to print the gender of each name entered during the execution, for example: When the user enter 'Ali', the output should be 'Male'.