Project Euler Problem#22
'''pthon prgram to find alphabetical value for each name in a text file and
multiply this value by its alphabetical position'''
file = open('p022_names.txt', "r")
file_contents = file.readlines()
file.close()
for line in file_contents:
a=line[1:...
mycodingjourneyy.hashnode.dev1 min read