Answers for "docstring real python"

3

docstrings in 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()
Posted by: Guest on November-22-2020
-1

python docstring use

def function1():
   """
   :docstring- tells about program,what the program contains
   """
Posted by: Guest on May-15-2021

Python Answers by Framework

Browse Popular Code Answers by Language