This project allows you to enter code in the format of the programming language #python, and can then run your #code in scratch! Note: use the arrow keys to move the cursor around (eg. down a line, backwards one character, etc.) The #interpreter currently only supports a very limited range of the python functionality, but below are some examples for you to try out :) Write #messages with the 'print' function: print('hello world') Perform mathematical #calculations: print(2*3+1) Assign values to #variables: myvariable=4+2 Ask #questions to the user using the 'input' function: name=input('enter your name') Below are some suggestions for #programs that you could create! #Area of a rectangle: width=input('enter the width') height=input('enter the height') print('the area is') print(width*height) #Sharing money: money=input('enter the amount of money') n=input('enter number of people') print('each person gets') print(money/n) #Average of two inputs: number1=input('first number') number2=input('second number') print('the average is') print((number1 + number2)/2) Please do share the programs you have written, I'd love to see what other ideas you've thought of! Find out more about python on its website: https://www.python.org Thanks to @qucchia and @Boomer001 for showing me how to detect special characters on the keyboard : )