index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a285.py
blob: 86ba91e563035c1a9a0be5ba942ef09d1f0248ca (
plain
)
1
2
3
4
5
def
sum_num
(
numbers
):
total
=
0
for
x
in
numbers
:
total
+=
x
return
total
/
len
(
numbers
)