I am looking online, and I can see how to create columns from a list in Pandas, however I'd like my columns to have repeat values within the rows for each list.
Example is below:
students = ['John','Sally','Mike']
tests = ['Math1','CompSci1','English1']
****Desired Outcome from List*****
'Student' 'Test'
John Math1
John CompSci1
John English1
Sally Math1
Sally CompSci1
Sally English1
Mike Math1
Mike CompSci1
Mike English1
Thanks for any assistance!