所以我想要做的是創建一個代碼,在名稱中添加字母的值,例如名稱:ABCD ---> 1 + 2 + 3 + 4 = 10在Python中的循環添加項目
到目前爲止我的代碼是:
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=" ")
您可能還想要解釋[生成器表達式](http://www.youtube.com/watch?v=pShL9DCSIUw)。 –