Commit f7ce6ea5 by BellCodeEditor

auto save

parent fbc96e2c
Showing with 16 additions and 2 deletions
...@@ -12,5 +12,13 @@ def bigWhite(): ...@@ -12,5 +12,13 @@ def bigWhite():
else: else:
total.append(unit) total.append(unit)
return total return total
def sum(price):
count = 0
for i in price:
count = count + i
return count
print(bigWhite()) h = bigWhite()
\ No newline at end of file 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