Batter Up

This commit is contained in:
2023-06-24 20:53:51 +02:00
parent b45620ae5b
commit c2f131b954

3
batterup.py Normal file
View File

@@ -0,0 +1,3 @@
_ = input()
at_bats = [x for x in map(int, input().split()) if x >= 0]
print(sum(at_bats) / len(at_bats))