Task 2
Created: 2026-03-10
- Download and install VS Code
- By convention, open the Command Prompt and navigate to your project directory and execute the command
code .to open VS Code with the current folder as the current folder - Identify the following components of the GUI: Main menu, left side vertical Toolbar, left Primary Side Bar, Editor Window, Right Secondary Side Bar, bottom Panel, Status bar at bottom
- Check how the content of the Primary Side Bar changes as well as it opens and closes when one of the icons on the vertical Toolbar is clicked
- Explore the Settings () at the bottom of the toolbar.
- Search for and install Microsoft Python extension by clicking on the Extensionsbutton (or press Ctrl+Shift+X)
- Open the Explorer button on the Toolbar (or press Ctrl+Shift+E) to open the file explorer and create a file named
example01.pyand type the following program with just a single line of codeprint("Hello, world!")and run the script by opening the terminal (frrom main menu, click View Terminal) and execute the script and verify that the outputHello, world!appears in the terminal.