Upload files to "HW"

This commit is contained in:
2026-01-28 20:11:35 -05:00
parent efa0686d27
commit dd8eb72c44
3 changed files with 68 additions and 0 deletions

7
HW/test.py Normal file
View File

@@ -0,0 +1,7 @@
def factorial(n):
if n==0:
return 1
product = n*factorial(n-1)
return product
print(factorial(3))