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

13 lines
No EOL
206 B
Python

def times_3(x):
""" Multiply x by 3.
Parameters
----------
x : The item to multiply by 3.
"""
return x * 3
if __name__ == '__main__':
print(times_3(2))
print(times_3("a"))