Starting up with Repl.it

Open your favorite internet browser (such as Edge, Firefox, Google Chrome, Internet Explorer) and go to https://replit.com. Scroll to the bottom of the page, look for languages, search for Python and click it.

List of languages to select in Repl.it

You should see something like the following screen:

Screenshot of Repl.it showing the main.py and the run buttom

Before we start, let’s first understand how the window works. The main.py file contains code, or instructions for the computer to run. Anything that results from running the code will be displayed on the right side. This window is called the console.

Hit run and watch your console run your code on the screen to the right! In the example below, print tells the computer to print the sentence within the parentheses () into the console, or the screen on the right. Learn more about print in the next lessons. Screenshot of Repl.it showing print(“Hello World”) in the main.py file and the result in the console on the right

Note: The RUN button looks like this: Run button