1st question: is there an easier way to assign values to each letter in alphabet?
Sure. The most common encoding is the ASCII. Just type ASCII in a search engine to see the ASCII table.
Python can tell the ASCII code for a given character:
>>> ord('a')
97
>>> ord('A')
65
>>> ord('0')
48
2nd question: assuming im not heading entirely in the wrong direction with this script, haw would i assign afunction to the user inout to make it return a # value for "each" letter in a given name that might be entered?
ex. of intended function: user entered: bob
return shud be: 2, 15, 2
Use a for loop to loop over the characters of the name. For each character use the ord() function to print its ASCII code.