Add 'Pro' statement (#25670)

Pro statement about the ease of debugging Python code using the interpreter
This commit is contained in:
mkanoria
2018-10-25 08:19:32 -04:00
committed by Paul Gamble
parent 843f6bff66
commit bf196ded49

View File

@ -106,6 +106,7 @@ Some of the principles that influenced the design of Python are included as an E
1. Interactive language with a module support for almost all functionality. 1. Interactive language with a module support for almost all functionality.
2. Open Source: So, you can contribute to the community, the functions you have developed for future use and to help others 2. Open Source: So, you can contribute to the community, the functions you have developed for future use and to help others
3. A lot of good interpreters and notebooks available for better experience like jupyter notebook. 3. A lot of good interpreters and notebooks available for better experience like jupyter notebook.
4. It is a very easy language to learn and debug too. To check if a small bit of code works or not, you can just open up the interpreter and test
#### Cons #### Cons
1. Being open source, many different ways have developed over the year for same function. This sometimes, creates chaos for others to read someone else code. 1. Being open source, many different ways have developed over the year for same function. This sometimes, creates chaos for others to read someone else code.