How should I do this?

I’m start to learn python and my VS code appear in following error and I already install pylint. How should I do? please

Those are just pylint warnings telling you to add documentation to your code. You can either (1) ignore them or (2) configure pylint to not tell you about those things.

2 Likes

How to configure pylint to not tell me about those things. I don’t like the bule line in my code. Thanks.

You can either turn it off or tweak specific settings. Both are covered in this general guide:

If you are going to tweak settings I would use the .pylintrc file since that’s easier to modify and follows the standard pattern of having a file to configure the binary.

I should also mention you can just do what it is asking you to do (ie. add the module and function documentation strings).