An ASCII(stands for American Standard Code for Information Interchange) Code is the numerical representation for a character, as computers can only understand numbers
Example: ASCII code for '0' is 48
A string of characters is given, "brilliant.orgiscool" , where is the sum of the ASCII code of all characters
Find the last three digits of
Details and Assumptions:
The full list for ASCII Codes can be obtained here at ASCII Table
Image credit: http://www.asciitable.com/
You may try Part 2
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Python sum(ord(c) for c in 'brilliant.orgiscool')