3 ответов
+ 3
Because reading python code is like reading a English book and
alse you no need yo declare variables type it automatically detect type of variables like
x=0
It is declaration of integer variable x and stored 0
If you want to check is it integer or not than use type() like
type(x)
And it will return type of variable like this <int class>
In python every thing is object this thing make python different to other programming languages. Thankyou
+ 3
It has an easy beginner-friendly syntax and good libraries.
+ 2
Thank you Abhishek 👍 So it's the simplicity of python makes it better among others, due to the dynamic datatype assignment of variable at code execution