We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58584bf commit 47e3d17Copy full SHA for 47e3d17
Average.py
@@ -0,0 +1,6 @@
1
+def Average():
2
+ list = [1672, 79792, 73973, 739]
3
+ num = sum(list) / len(list)
4
+ print(num)
5
+
6
+Average()
0 commit comments