This commit is contained in:
adii1823
2021-10-28 17:37:54 +05:30
parent 8b802c5c62
commit ee641c189f
49 changed files with 601 additions and 0 deletions
View File
+6
View File
@@ -0,0 +1,6 @@
# lib/funcdef.py
def square(n):
return n ** 2
def cube(n):
return n ** 3