Skip to content

Instantly share code, notes, and snippets.

@JL-Cox
Last active July 3, 2018 23:17
Show Gist options
  • Save JL-Cox/4d60184f8812fb720f6a0d2b4ebb2ffe to your computer and use it in GitHub Desktop.
Save JL-Cox/4d60184f8812fb720f6a0d2b4ebb2ffe to your computer and use it in GitHub Desktop.
CodeWarsKata_MeanOfArray_06272018
def get_average(marks):
a = 0
for eachNumber in mark:
a += eachNumber
a = a//len(marks)
print("a")
return a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment