I have my own name saved as a string under the variable name. I want to find the character code for each character in my name and then add them all up using a for loop. This is what I've started with, no idea if it's staring about the right way
name = "Ashley Marie"
for index in name:
ans = ord(index)