From 90e7b49f9e5845168c77a707130c4bdba1fb3676 Mon Sep 17 00:00:00 2001 From: s45167 Date: Thu, 30 Nov 2017 23:05:00 +0100 Subject: [PATCH] Done Signed-off-by: s45167 --- labs02/task07.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"]]