How do i assign a numerical value to each uppercase letter, and then use it later via string and then add up the values.
EG.
A = 1, B = 2, C = 3 (etc..)
string = 'ABC'
Then return the answer 6 (in this case).
|
|
|
You can use
|
|||||||||||||||
|
|
||||
|
|
|
|||
|
|
|
|||
|
|
|
Enumerate can do the numbering for you:
|
|||
|
|
|
If you are using Python3:
|
||||
|
|
|
After you define the variables you can just return the answer or print the answer A = 1 B = 2 C = 3 total = A + B + C print (total) return total |
|||
|
|
|
Golfy answer certain to annoy your professor:
|
|||
|
|
|
The most sensible answer is of course using
|
|||
|
|