mirror of
https://github.com/github/codeql.git
synced 2025-12-27 22:26:31 +01:00
8 lines
162 B
Python
8 lines
162 B
Python
# Incorrect:
|
|
|
|
def average(l):
|
|
return sum(l) / len(l)
|
|
|
|
print average([1.0, 2.0]) # Prints "1.5".
|
|
print average([1, 2]) # Prints "1", which is incorrect.
|