Q:

python comment multiple lines

#There is no way to comment multiple lines in Python.
#You just keep using "#" symbol to comment each line out.

'''
Technically you could also use triple single quotation
marks like so, but this formatting does not count
as "true" source code comments that are removed by
a Python parser.
'''
6
def increase_salary(sal,rating,percentage):
    """ increase salary base on rating and percentage
    rating 1 - 2 no increase
    rating 3 - 4 increase 5%
    rating 4 - 6 increase 10%
 
    """
11
"""Put comments inside triple quotes"""
2
'''
This is a multiline
comment.
'''
0
'''
This is a multiline
comment. AKA a docstring
'''
0

New to Communities?

Join the community