I\'m looking to compute the sum of the ordinal values of all the characters of the full name string, and will output this sum.
here is what I have so far.
If you only concatenate a and b you will get 695:
a
b
695
print(sum(ord(i) for i in a+b)) # 695
But, it seems you also need a space between the first and last name:
print(sum(ord(i) for i in '{0} {1}'.format(a, b))) # 727