Python IDLE (IDE) This program emulates Python's IDLE/SHELL The start page gives you an option to load or make a new file When entering IDLE you can add code by clicking on the line You will be prompted with what you want to input Lines can be clicked again to edit or erase Click run to execute the code you have written IMPORTANT: These are the only functions which can be used or it will be output with a syntax error - print("") <- Print function with strings - print() <- Print function with variables - num = 1 <- Set variables with strings/numbers (characters) - #Comment <- Add comments
Changelog: v0.01 -Basic typing system -Created runtime environment v0.02 -Added (string) print function v0.04 -Added setting variables -Bug Fixes -Added error load v0.05 -Added print (variable) function -GFX retouches v0.1 -Added operands -Optimised code