I made a very small portion of Python in scratch!!!!!!!!!!! Type your code and it will show up in the Python list. Show/Hide to show or hide the lists. (Has no purpose) ---Usable code--- print("text") - writes text in the IDLE Shell time.sleep(time) - waits a certain amount of time remember to use the parenthesis for those two and the quotation marks for the print. run - runs code If you type in something wrong it will say Error at line ___ ---Examples--- print("hello world!") _______________ print("I will wait") time.sleep(2) print("I waited!") _____________