The Code Editor
A tour of the CodeDesk editor — where you write, run, and test your code
Open an assignment
When you open an assignment, you'll see the complete problem description including requirements, an example of how the program should work, and starter code to help you begin. The left side shows all the details you need to understand what to build, while the right side will display your code editor once you start the project by clicking the "Creating..." button.
The file panel
The code editor
The code editor is the main workspace where you'll write and edit your Python code, featuring syntax highlighting that colors different parts of your code (like keywords in blue and strings in orange) to make it easier to read. Below the editor, you'll find tabs for "Stdin" where you can provide input data for your program, and "Console" where your program's output will appear when you run it.
Running your code
Run the code
The program has started running and is waiting for you to type your name in the console at the bottom of the screen. You can see the prompt "Enter your name:" which corresponds to the `input()` function on line 4 of your code. Type your response in the console area and press Enter to continue the program execution.