๐
Document your code and publish package
If you want to publish your codes and packages you should write a document for them to better understanding and usage. In Python, you can write a description with """ this is a description """.
python
# in the firt of file""" one line description.A more detailed description."""# Or"""one line description."""def convert(path):"""Convert PDF to TEXTParameters:path (str): the path of PDF fileReturns:str: Content of PDF file"""
