所以我要做的是制作一个代码,在名称中添加字母的值,例如名称:ABCD ---> 1 + 2+ 3+ 4= 10
到目前为止,我的代码是:
def main():
name = input("Please enter your name (all lowercase): ")
print("\nHere is the code: ")
for ch in name:
print(ord(ch)-96,end=" ")
我想要做的是添加所有的值(ord(ch)-96,end=" ")