diff --git a/content/roadmaps/102-devops/content/100-language/100-python.md b/content/roadmaps/102-devops/content/100-language/100-python.md
index 72d9e196e..5889630f2 100644
--- a/content/roadmaps/102-devops/content/100-language/100-python.md
+++ b/content/roadmaps/102-devops/content/100-language/100-python.md
@@ -1,6 +1,6 @@
# Python
-Python is a well known programming language which is both a strongly typed and a dynamically typed language. Being an interpreted language, code is executed as soon as it is written and the Python syntax allows for writing code in functional, procedureal or object-oriented programmatic ways.
+Python is a multi-paradigm language. Being an interpreted language, code is executed as soon as it is written and the Python syntax allows for writing code in functional, procedural or object-oriented programmatic ways. Python is frequently recommended as the first language new coders should learn, because of its focus on readability, consistency, and ease of use. This comes with some downsides, as the language is not especially performant in most production tasks.
Free Content
Python Website
@@ -8,4 +8,4 @@ Python is a well known programming language which is both a strongly typed and a
W3Schools - Python Tutorial
Python Crash Course
Automate the Boring Stuff
-Codecademy - Learn Python 2
+Codecademy - Learn Python 3