I Haz Codes

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Menu
ASCII table

http://www.asciitable.com/

The code below will display part of the ASCII table.

x = 65
while x < 75:
    print (x, "is", chr(x), "in ASCII")
    x = x + 1

Using the above code display the ASCII values for all upper and lower case letters (not including the values in between).You can find the ASCII values using the link above.

You need to log in or create an account to submit code!

Leave a Reply

Your email address will not be published. Required fields are marked *

Information