Update in Pros. (#28414)

This commit is contained in:
Smit1701
2018-12-11 21:21:25 +05:30
committed by Christopher McCormack
parent 9443360a31
commit bb78b3dd13

View File

@ -118,8 +118,9 @@ Some of the principles that influenced the design of Python are included as an E
- Interactive language with a module support for almost all functionality.
- Open Source: You can contribute to the community and help others with the functions you have developed.
- A lot of good interpreters and notebooks available for better experience like jupyter notebook.
- It is a very easy language debug. To check if a small bit of code works or not, you can just open up the interpreter and test.
- It is a very easy language to debug. To check if a small bit of code works or not, you can just open up the interpreter and test.
- There are multiple libraries available for Python, like numpy, pandas, etc., to make doing complex operations easy!
- Don't have to worry about range of data types. For instance, in the C language, we have to specify data types such as `int`, `long int`, `long long int`.
### Cons
- Being open source, many different ways have developed over the years for the same function. This sometimes creates chaos for others to read someone else's code.