1
0
forked from tdwojak/Python2017

task07 passed

This commit is contained in:
Ewelina 2017-11-27 00:43:52 +01:00
parent 53c2cb3f5f
commit 63739e6968

View File

@ -11,6 +11,7 @@ def char_sum(text):
suma += ord(element)
return(suma)
def tests(f):
inputs = [["this is a string"], ["this is another string"]]
outputs = [1516, 2172]