Create the body of the function merge_data() that takes two DataFrame objects user_info and emails, merges them using left join and returns the combined DataFrame. You do NOT need to call the function or print any results.
Combining Data in Pandas
Left merge
Report a typo
Write a program in Python 3
import pandas as pd
def merge_data(user_info, emails):
pass
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.