[newbie/2.5.1.1] Computing value of a word?

G

Gilles Ganault

Hello,

For a game, I need to go through a wordlist, and for each word,
compute its value, ie. a=1, b=2, etc.

So for instance, NewYork = 14 + 5 + 23 + 25 + 15 + 18 + 11 = 111.

Before I write the obvious While loop to go through each line in the
input text file, I was wondering if Python didn't already have some
function to perform this type of computation.

Thank you.
 
C

Chris Rebert

Hello,

For a game, I need to go through a wordlist, and for each word,
compute its value, ie. a=1, b=2, etc.

So for instance, NewYork = 14 + 5 + 23 + 25 + 15 + 18 + 11 = 111.

Before I write the obvious While loop to go through each line in the
input text file, I was wondering if Python didn't already have some
function to perform this type of computation.

A = ord('a') - 1
for line in your_file:
word = line.strip().lower()
score = sum(ord(letter)-A for letter in word)

Cheers,
Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top