79275982

Date: 2024-12-12 17:13:23
Score: 2
Natty:
Report link

Just use groupby:

gp = df.groupby(["univertcity", "country", "sector"])
for key, item in gp:
    print(gp.get_group(key), "\n\n")

res

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: rehaqds