From 02b99a72da29ee2291c18cb939ffcb339e710e43 Mon Sep 17 00:00:00 2001 From: Val B Date: Sun, 13 Jan 2019 16:18:09 -0400 Subject: [PATCH] Fix typo (#30046) --- guide/english/python/python-2-vs-python-3/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/python/python-2-vs-python-3/index.md b/guide/english/python/python-2-vs-python-3/index.md index 8728b5bb3b..a9abf16cc6 100644 --- a/guide/english/python/python-2-vs-python-3/index.md +++ b/guide/english/python/python-2-vs-python-3/index.md @@ -3,7 +3,7 @@ title: Python 2 vs Python 3 --- We aren't taking a side in the debate. If you are interested in knowing more about it for academic purposes, perhaps this article comparing Python 2 and Python 3 would intrigue you. -But, we cannot also be ignorant of the fact that there are two major flavors of Python out there. Why shoud you care, you ask? Because code written for one version of Python can result in syntax errors in other versions of Python. +However, we cannot ignore that there are two major flavors of Python out there. Why should you care? Because code written for one version of Python can result in syntax errors in another version of Python. The following is a valid `print` statement in Python 2, but does not work on Python 3: