From 9b68d697977a0e6f4dfa824f198de9dfc8345255 Mon Sep 17 00:00:00 2001 From: Esoterydactyl Date: Fri, 5 Aug 2022 08:37:26 -0400 Subject: [PATCH] Add python resources Please note that Python 2 is EOL and we should be directing learners exclusively to 3. --- .../roadmaps/102-devops/content/100-language/100-python.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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