updates lecture files

This commit is contained in:
Pamela Hathway 2025-09-23 13:19:04 +03:00
parent 6c782bdf30
commit 952f8b97a5
6 changed files with 10 additions and 154 deletions

View file

@ -1,13 +1,6 @@
def times_3(x):
""" Multiply x by 3.
Parameters
----------
x : The item to multiply by 3.
"""
return x * 3
pass
if __name__ == '__main__':
print(times_3(2))
print(times_3("a"))
if __name__ == "__main__":
pass