Skip to content

Commit b4e9ec4

Browse files
committed
Add Python begginner question 'Python characteristics' answer
1 parent 4b245d9 commit b4e9ec4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1642,6 +1642,17 @@ Swarm management which means you can create new swarms in Docker Cloud.
16421642

16431643
<details>
16441644
<summary>What are some characteristics of the Python programming language?</summary><br><b>
1645+
```
1646+
1. It is a high level general purpose programming language created in 1991 by Guido Van Rosum.
1647+
2. The language is interpreted, being the CPython (Written in C) the most used/maintained implementation.
1648+
3. It is strongly typed. The typing discipline is duck typing and gradual.
1649+
4. Python focuses on readability and makes use of whitespaces/identation instead of brackets { }
1650+
5. The python packate manager is called PIP "pip installs packages", having more than 200.000 available packages.
1651+
6. Python comes with pip installed and a big standard library that offers the programmer many precooked solutions.
1652+
7. In python **Everything** is an object.
1653+
1654+
There are many other characteristics but these are the main ones that every python programmer should know.
1655+
```
16451656
</b></details>
16461657

16471658
<details>
@@ -1719,6 +1730,10 @@ Shortest way is <code>str[::-1]</code> but not the most efficient.
17191730

17201731
<details>
17211732
<summary>How to write to a file?</summary><br><b>
1733+
```
1734+
with open('file.txt', 'w') as file:
1735+
file.write("My insightful comment")
1736+
```
17221737
</b></details>
17231738

17241739
<details>

0 commit comments

Comments
 (0)