xxxxxxxxxx
1import withcode
2i = withcode.Image()
3
4text = input("Type in some text:")
5pixels = []
6
7for letter in text:
8ascii = ord(letter)
9binary = str(bin(ascii)).replace("0b", "").zfill(8)
10pixels.append([int(x) for x in list(binary)])
11
12print(letter + " ASCII:" + str(ascii) + " bin:" + binary)
13
14i.draw(pixels)
Variables:
Renaming a project helps you organise your saved code
Be careful: if you choose to delete a file, you will not be able to recover it unless you've saved a copy
create.withcode.uk allows you to write, run, debug and share python code in your web browser.
Anyone can access your code using this link:
Copy and paste this html to embed your code in a blog / website:
You will need this plugin installed on your site first.