約 20,400 件の結果
リンクを新しいタブで開く
  1. Python Docstrings - GeeksforGeeks

    2025年9月19日 · Docstrings (Documentation Strings) are special strings used to document Python code. They provide a description of what a module, class, function or method does. Declared using …

  2. How to Write Docstrings in Python

    2025年8月25日 · Python docstrings are string literals that show information regarding Python functions, classes, methods, and modules, allowing them to be properly documented. They are placed …

  3. Python Docstrings (With Examples) - Programiz

    The docstring for a function or method should summarize its behavior and document its arguments and return values. It should also list all the exceptions that can be raised and other optional arguments.

  4. PEP 257 – Docstring Conventions | peps.python.org

    2001年5月29日 · A docstring is a string literal that occurs as the first statement in a module, function, class, or method definition. Such a docstring becomes the __doc__ special attribute of that object.

  5. Docstring - Wikipedia

    A docstring is a string literal that annotates an associated section of source code. It provides for the same utility as a comment, but unlike a comment is a string literal and is retained as part of the …

  6. Python Docstring Formats (Styles) and Examples - nkmk note

    2023年8月26日 · To include a docstring in a function, write the string as shown below. Docstring formats will be discussed later. The docstring is stored as a string in the __doc__ attribute and can be …

  7. 8 Essential Docstrings Python Examples for Cleaner Code

    4 日前 · Mastering different docstring formats is a critical skill for any developer, turning confusing modules into self-explanatory tools. TL;DR: Key Takeaways Choose a Style and Stick with It: …

  8. Python Docstrings Tutorial : Examples & Format for Pydoc ... - DataCamp

    2025年2月14日 · Python documentation string, commonly known as docstring, is a string literal, and it is used in the class, module, function, or method definition. Docstrings are accessible from the doc …

  9. Common Docstring Formats in Python - Stack Abuse

    2023年8月25日 · What is a Docstring? A docstring, short for documentation string, is a literal string used right after the definition of a function, method, class, or module. It captures the essence of what the …

  10. Python Docstrings - Intellipaat

    2025年10月17日 · Docstrings in Python are special text used to describe what a function, class, or module does in your Python code. They are written inside triple quotes and after the definition. …