Answers for "how to write a comment in python"

6

comments in python

#this is commented
'''
this
is
also 
a 
comment
'''
Posted by: Guest on August-25-2020
0

python comments

# Numpy-style python comments for functions
def foo(param_1=True):
  """Example function.

    Parameters
    ----------
    param_1 : bool, optional
        The first parameter (default is True)

    Returns
    -------
    num
        a number
    """
  return -1
Posted by: Guest on April-30-2021
0

how to make a comment in python

#Single Line Comments!
"""
multiline
comments
!
"""
Posted by: Guest on October-25-2021
6

comments in python

# This is a comment
Posted by: Guest on July-04-2020

Code answers related to "how to write a comment in python"

Python Answers by Framework

Browse Popular Code Answers by Language