From bb78b3dd1364ac77761c39cf2f6bb33f36a2f94d Mon Sep 17 00:00:00 2001 From: Smit1701 <44457594+Smit1701@users.noreply.github.com> Date: Tue, 11 Dec 2018 21:21:25 +0530 Subject: [PATCH] Update in Pros. (#28414) --- guide/english/python/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guide/english/python/index.md b/guide/english/python/index.md index d623da36f7..4c77e558bc 100644 --- a/guide/english/python/index.md +++ b/guide/english/python/index.md @@ -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.