1
0
forked from tdwojak/Python2018
This commit is contained in:
wagner.agnieszka 2018-06-01 17:32:25 +02:00
parent 84ac4edce9
commit 8e45dba2e5

View File

@ -6,7 +6,10 @@ Napisz funkcję char_sum, która dla zadanego łańcucha zwraca
sumę kodów ASCII znaków.
"""
def char_sum(text):
pass
x = 0
for c in text:
x += ord(c)
return (x)
def tests(f):
inputs = [["this is a string"], ["this is another string"]]