NYX Industries Personal Computer
Version A1.001 Copyright NI Corp 1975
16384 Bytes free

Connected via ARPAnet,

This is my first ever python program that I wrote myself. Its not much, its not perfect, but it served a purpose to help me build this site and learn.


    from random import *
    count =int (input("How many ASCII do you need? "))
        for loop in range(count):
            rnum = (randint(33, 127))
            print (chr(rnum), end="")
            print("")
        

Its amazing how a few simple lines can open doors to places that you never knew existed. Coding is not hard and very hard at the same time, its a puzzle thats overwhemling until its not.

Its like staring at a jigsaw that has all the pieces painted grey, but as you pick at the paint, the colours start to shine through and you see a star, a bit of sky, another star and then suddenly the grey starts to fall away of its own accord and the puzzle makes sense.