9 lines
132 B
Python
9 lines
132 B
Python
def times_3(x):
|
|
""" Multiply x by 3.
|
|
|
|
Parameters
|
|
----------
|
|
x : The item to multiply by 3.
|
|
"""
|
|
return x * 3
|