From 59799e3cb665a11ef7569b3b20d6df1377855be9 Mon Sep 17 00:00:00 2001
From: Angelisa <37790192+angelisamaria@users.noreply.github.com>
Date: Tue, 11 Dec 2018 10:03:50 -0800
Subject: [PATCH] Adjust punctuation & sentence structure (#31638)
---
guide/english/python/index.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/guide/english/python/index.md b/guide/english/python/index.md
index 1d82ec47ba..55c493d5db 100644
--- a/guide/english/python/index.md
+++ b/guide/english/python/index.md
@@ -33,15 +33,15 @@ Most *nix based operating systems come with Python installed (usually Python 2,
Python doesn't ship with Windows. The installer and instructions can be found here.
-Linux operating systems come with different versions of Python pre-installed. However to install Python 3.x on Linux, follow this link
+Linux operating systems come with different versions of Python pre-installed. However to install Python 3.x on Linux, follow this [link](https://docs.aws.amazon.com/cli/latest/userguide/awscli-install-linux-python.html).
-MacOS doesn't come with Python 3 (however Python 2.7 pre-installed by Apple), the installer and instructions can be found here
+MacOS doesn't come with Python 3 (however Python 2.7 pre-installed by Apple), the installer and instructions can be found [here](https://docs.python.org/3/using/mac.html).
## Python Interpreter
The Python interpreter is used to run Python scripts.
-If it is available and in Unix shell’s search path, it is possible to start Python by typing the command `python` followed by the script name. This will invoke the interpreter and run the script.
+In your terminal, type the command `python` followed by the script name to invoke the interpreter and run the script. This will determine whether the interpreter is available and in Unix shell’s search path.
`hello_campers.py`