“Docstrings w Python” Kod odpowiedzi

Docstrings w 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 Get Function Docstring

help(functionName)
Ninja Pinguin

Przykład Python Docstrings

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

Odpowiedzi podobne do “Docstrings w Python”

Pytania podobne do “Docstrings w Python”

Więcej pokrewnych odpowiedzi na “Docstrings w Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu