Skip to content

Commit 1789269

Browse files
committed
Update helpers to reference python3.8 from python3.6
1 parent fefb78e commit 1789269

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

helpers/1-start_python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ by clicking the PythonAnywhere logo in the top left.
3030
----
3131

3232
Click on the ">>> Python" button in the "New console" section below (underneath
33-
the Recent Consoles section), then on the **3.6** button in the menu that
34-
appears; this will start Python version 3.6, which is a good version to start
33+
the Recent Consoles section), then on the **3.8** button in the menu that
34+
appears; this will start Python version 3.8, which is a good version to start
3535
off with. After a little while, you should see a console with a "prompt" that
3636
looks like this:
3737

helpers/3-web_app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ hit the right arrow below to go to the next step.
9797
**New Web App Wizard**
9898

9999
The next choice is which version of Python (and its associated version of
100-
Flask) you want to use. For this tutorial we'll use Python 3.6. Click the
100+
Flask) you want to use. For this tutorial we'll use Python 3.8. Click the
101101
link for it, then click the right arrow for the next step.
102102

103103

helpers/6-education.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ For now, let's start a bash console. Find the `$ Bash` button under the Consoles
2828

2929
This should take you to a new page. In your Bash console, type:
3030

31-
python3.6
31+
python3.8
3232
>>> print("Hello world")
3333

3434
You'll see Python works the way you expect it to. Press Ctrl+D to exit.
@@ -53,7 +53,7 @@ write some more Python code:
5353

5454

5555
You can save your file, and if you wanted to you could go back to a Bash
56-
console and run it from the command-line with `python3.6 hello.py`. But there's
56+
console and run it from the command-line with `python3.8 hello.py`. But there's
5757
a shortcut right on this page -- click the light blue button that says `>>>
5858
Run` to save and run your file.
5959

0 commit comments

Comments
 (0)