There are two dictionaries that I would like to map.
These the are the key's and values inside my 1st dictionary:
first = {
    "Name": " John Doe", 
    "Gender": "Male", 
    "Phone": "01 9672 0321",
    "Occupation": "Engineer",  
}
2nd dictionary:
second = {
    "First_Name": "Name",
    "Last_Name": "Name",
    "Gender": "Gender", 
    "Phone": "Phone",
    "Occupation": "Occupation",
}
The Output should be:
"FirstName": "John",
"LastName": "Doe",
"Gender": "Male", 
"Phone": "01 9672 0321",
"Occupation": "Engineer"
I am new to Python and I am confused how to do this.
 
     
     
     
    