ex3 finished + flake for ex1

This commit is contained in:
2026-02-05 12:41:58 +01:00
parent 3158ce4eca
commit 83efbc7cc0
2 changed files with 20 additions and 7 deletions

View File

@@ -3,7 +3,8 @@ import sys
if __name__ == "__main__":
args = sys.argv
if len(args) <= 1:
print("No scores provided. Usage: python3 ft_score_analytics.py <score1> <score2> ...")
print("No scores provided. Usage: python3\
ft_score_analytics.py <score1> <score2> ...")
else:
scores = [0] * (len(args) - 1)
i = 0