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.
Simply use a for loop like so num=sum([ord(i) for i in c],0) assuming c is "Mary Joe" or the string you want. Also, you should use raw_input if you want the user to give you a string, and for printing use print "your full name is: " + c
num=sum([ord(i) for i in c],0)
raw_input
print "your full name is: " + c