
Why We Choose Python..?
Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python’s simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed…
If we talked about C Language you will often noticed that as comparing it with python, C Language is complex let’s understand this with an quuick and short Example here below there is code comparison between C Language and Python Language..!
//Code below is about how we execute "hello world" in C Language...
#include<stdio.h>
int main{
printf("Hello World..."\n);
return 0;
}
//Code below is about how we execute "hello world" in Python Language...
print("Hello World..."\n)
so you will see the comparison between C Language and Python Language above clearly…!
Thank You for your visit..!
If you like post plzz comment for your support..!
Leave a Reply