Use a multiline string to make the multi line comment: code example
Example 1: python comment
# Single line Comment
"""
(''' single quotes ''') will also work
Multi Line
Comment
"""
Example 2: python multiline comment
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%
"""