how to comment in python 3 code example
Example 1: python comment
# To make a Python Comment just use # and type.
"""
For Multi-Line Comments
Use Three """
"""
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%
"""