diff --git a/README.md b/README.md index a00df5a..c70089d 100644 --- a/README.md +++ b/README.md @@ -1642,6 +1642,17 @@ Swarm management which means you can create new swarms in Docker Cloud.
What are some characteristics of the Python programming language?
+``` +1. It is a high level general purpose programming language created in 1991 by Guido Van Rosum. +2. The language is interpreted, being the CPython (Written in C) the most used/maintained implementation. +3. It is strongly typed. The typing discipline is duck typing and gradual. +4. Python focuses on readability and makes use of whitespaces/identation instead of brackets { } +5. The python packate manager is called PIP "pip installs packages", having more than 200.000 available packages. +6. Python comes with pip installed and a big standard library that offers the programmer many precooked solutions. +7. In python **Everything** is an object. + +There are many other characteristics but these are the main ones that every python programmer should know. +```
@@ -1719,6 +1730,10 @@ Shortest way is str[::-1] but not the most efficient.
How to write to a file?
+``` +with open('file.txt', 'w') as file: + file.write("My insightful comment") +```