Hi. I want to create a Pandas dataframe in Python. But the problem is that I have two lists. I know I can do it with one list as follows:
import pandas as pd
name=[‘John’,’mike’,’Eric’,’Rachel’]
df=pd.DataFrame(name, columns=[‘Name’])
But how to do it with 2 lists?