We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 346b79d commit 06e4f06Copy full SHA for 06e4f06
ex2.2FindingTheAverage.py
@@ -0,0 +1,4 @@
1
+# Find the average of numbers in a list.
2
+
3
+def FindAverage(List):
4
+ return sum(List)/len(List)
0 commit comments