mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
9 lines
174 B
Python
9 lines
174 B
Python
# Correct:
|
|
from __future__ import division
|
|
|
|
def average(l):
|
|
return sum(l) / len(l)
|
|
|
|
print average([1.0, 2.0]) # Prints "1.5".
|
|
print average([1, 2]) # Prints "1.5".
|