2025-plovdiv-testing-debugging/hands_on/first/first.py
2025-09-19 10:46:45 +02:00

8 lines
132 B
Python

def times_3(x):
""" Multiply x by 3.
Parameters
----------
x : The item to multiply by 3.
"""
return x * 3