repeat1=0
while repeat1!=x1:
fini=ord(dlist[repeat1])
repeat1=repeat1+1
print (fini)
sum_of_all=sum(fini)
print(sum_of_all)
i want to add the numbers that are made from the variable fini. python gives me an error saying: 'int' is not iterable.