I have the following code that is giving me a constant + a list of tuples in my return values:
for name in ours_list:
print(name, process.extract(name, snow_list, limit=5))
Returns:
Remote Access Migration [('Remote Access Migration', 100), ('Migrate Application Access', 86), ('Migration of Z75', 86), ('Network Access', 86), ('Remote Control Access Hardening', 86)]
But I'm looking for a DataFrame:
Name | Pick 1 | Pick 2 ....
Remote Access Migration | Remote Access Migration (100) | Migrate Application Access (86) ....
Any ideas on how to adjust my code? I'd imagine it's a join the list together and then create a list of lists and combine that into a large dataframe?