Commit f7ce6ea5 by BellCodeEditor

auto save

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