Commit 3b61cd4e by BellCodeEditor

auto save

parent bfedba93
import test
c = [10,22,13]
print(sum(c))
\ No newline at end of file
array = [10,11,12,13]
def sum(array):
count = 0
for i in array:
count = count + i
return count
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