US Medical insurance Feedback

Hi I’d like to get feedback on the first portfolio project US Insurance.

  • I found the project fairly easy. I tackled it alone. I struggled a little with scoping the project as I wasn’t sure what avenues to go down in terms of querying the data.
  • It took my a 4 hours to complete this project.
  • here is a link to the github

If you could leave any feedback about this project it would be much appreciated.

Hello, I am at the same point you were, first portfolio project. Very nice! This is also my first time trying a code review.

I did something similar with the regional count function, but shortened it by using the .count list method, iterating over the set of possible regions.

Thank you for sharing. I learned a couple of things from your code as well. Happy coding!

possible_regions = set(region)

def regional_count(region):
dict = {}
for i in possible_regions:
dict.update({str(i): region.count(i)})
return dict

region_count_dict = regional_count(region)
print(region_count_dict)