Commit f7ce6ea5 by BellCodeEditor

auto save

parent fbc96e2c
Showing with 16 additions and 2 deletions
...@@ -13,4 +13,12 @@ def bigWhite(): ...@@ -13,4 +13,12 @@ def bigWhite():
total.append(unit) total.append(unit)
return total return total
print(bigWhite()) def sum(price):
\ No newline at end of file count = 0
for i in price:
count = count + i
return count
h = bigWhite()
print(h)
print(sum(h))
def func(a,b):
c = a+b
return 5
def func2(a,b):
c = a*b
return c
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment