Hello. Please check my project "The Portfolio Project: U.S. Medical Insurance Costs"

Hello. This is my code about medical insurance costs. Please, give me feedback about my work. Please give me advice about Python.

1 Like

Hi Pavich_3,

Your code looks excellent! One thing that might improve your code is to review PEP 257 – Docstring Conventions on documenting your code. All public modules, functions, classes, and methods should have a docstring. This docstring should appear after the def line. like so:

def my_function():
    """This is a docstring."""
    pass

Other than that, I think your code looks very clean & professional ~ Great job!

Thank you for your review. It’s useful.