diff --git a/labs02/task07.py b/labs02/task07.py index 26f4822..b9e22bc 100644 --- a/labs02/task07.py +++ b/labs02/task07.py @@ -7,7 +7,7 @@ sumę kodów ASCII znaków. """ def char_sum(text): return sum(ord(i) for i in text) - pass +## def tests(f): inputs = [["this is a string"], ["this is another string"]]