“docstrings en python” Réponses codées

docstrings en python

# Docstrings are used create your own Documentation for a function or for a class
# we are going to write a function that akes a name and returns it as a title.
def titled_name(name):
  # the following sting is Docstring
  """This function takes name and returns it in a title case or in other
  words it will make every first letter of a word Capitalized"""
  return f"{name}".title()
Tejas Naik

python obtenir la fonction docstring

help(functionName)
Ninja Pinguin

Exemple de docstrings Python

Python Docstrings Example
def Add(a,b):
    '''Takes two number as input and returns sum of 2 numbers'''
    return a+b
Gorgeous Gazelle

Réponses similaires à “docstrings en python”

Questions similaires à “docstrings en python”

Plus de réponses similaires à “docstrings en python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code